Put N_ERROR at the end.

This commit is contained in:
Dianne Skoll
2024-09-16 14:47:09 -04:00
parent 10ae0b0077
commit 00ad38e5fe
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -38,8 +38,8 @@
5) N_BUILTIN_FUNC: A reference to a built-in function
6) N_USER_FUNC: A reference to a user-defined function
7) N_OPERATOR: A reference to an operator such as "+" or "&&"
8) N_ERROR: A node resulting from a parse error
9) N_SHORT_STR: A string constant short enough to store in u.name
8) N_SHORT_STR: A string constant short enough to store in u.name
9) N_ERROR: An uninitialized node, or a parse error
Additional types are N_SHORT_VAR, N_SHORT_SYSVAR, and N_SHORT_USER_FUNC
which behave identically to N_VARIABLE, N_SYSVAR and N_USER_FUNC