add declaration with function support

This commit is contained in:
2025-06-04 23:12:03 +01:00
parent 2bd0384060
commit 7b76b0d888
10 changed files with 125 additions and 17 deletions

View File

@@ -15,7 +15,9 @@ typedef enum {
AST_IF,
AST_ACCESS,
AST_CALL,
AST_DECLARATION
AST_DECLARATION,
AST_NULL,
AST_BOOLEAN
} ValueType;
extern const char* ValueTypeNames[];