aboutsummaryrefslogtreecommitdiffhomepage
path: root/ast.c
diff options
context:
space:
mode:
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ast.c b/ast.c
index 6aa0e7e..66f7cc2 100644
--- a/ast.c
+++ b/ast.c
@@ -195,6 +195,9 @@ enum AstNodeKind {
AstNodeKind_union_decl,
AstNodeKind_union_def,
AstNodeKind_union_member,
+
+ // Intermediate ASTs: they are used only in parsing, not for parse result.
+ AstNodeKind_declarator,
};
typedef enum AstNodeKind AstNodeKind;