From 4c7555dfd806dceb87626d4811bfd562583e648c Mon Sep 17 00:00:00 2001 From: omicron Date: Tue, 1 Apr 2025 15:06:42 +0200 Subject: [PATCH] Add invalid ast node id --- src/ast.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ast.h b/src/ast.h index a203604..9a9539b 100644 --- a/src/ast.h +++ b/src/ast.h @@ -7,6 +7,8 @@ #include typedef enum node_id { + NODE_INVALID, + NODE_PROGRAM, NODE_DIRECTIVE, NODE_LABEL,