From 79796388b3c040bda25ce330af72ca514b30f60c Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 18 Aug 2025 04:13:56 +0900 Subject: feat: support variable declaration with multiple variables (local variables only) --- ast.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ast.c') 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; -- cgit v1.2.3-70-g09d2