add list support to parser

This commit is contained in:
2025-06-11 02:08:17 +01:00
parent 55c1500453
commit a47df1ddb0
7 changed files with 85 additions and 11 deletions

View File

@@ -36,7 +36,8 @@ typedef enum {
AST_NULL,
AST_BOOLEAN,
AST_DOWRAP,
AST_OPERATION
AST_OPERATION,
AST_LIST
} ValueType;
extern const char* ValueTypeNames[];