aboutsummaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index 31be1c8..5d5c53b 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -61,6 +61,14 @@ enum {
‘~rhs’ */
ASTUNCMPL,
+ /* Function call
+ ‘lhs(a, …)’; aux[rhs].funcall */
+ ASTFUNCALL,
+
+ /* A dummy node to deal with quirks of how the parser is setup. The
+ node directly after this is an ASTFUNCALL. */
+ ASTCALLSTMT,
+
/* NOTE: Ensure that the enumerations defined above this comment do
not exceed 37 — the value of ‘%’ — or they will conflict with the
definitions below. */