From 13923af3ab57dbd826ce6f36b38228eea595590f Mon Sep 17 00:00:00 2001 From: Quinn Stephens Date: Mon, 9 Jun 2025 22:02:58 -0400 Subject: parser: Parse uninitialized variable declarations Signed-off-by: Quinn Stephens --- include/parser/ast.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/parser/ast.h') diff --git a/include/parser/ast.h b/include/parser/ast.h index 3449764..d4baf92 100644 --- a/include/parser/ast.h +++ b/include/parser/ast.h @@ -37,7 +37,8 @@ enum ast_node_kind { NOK_UNKNOWN, - NOK_FUNCTION + NOK_FUNCTION, + NOK_VARIABLE }; struct ast_node { -- cgit v1.2.3