aboutsummaryrefslogtreecommitdiff
path: root/src/compiler/ast-tree.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-29 21:44:10 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-29 21:44:10 +0330
commit9c7d2cad8ef9bcc019af3924fb72dd896c8c77e7 (patch)
tree68374525dc338e74241f39174903abb730951940 /src/compiler/ast-tree.h
parent80d92c10bf4a646861b27c634c765b7f7ce63c69 (diff)
add any type
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r--src/compiler/ast-tree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h
index 63e24b0..904d6f7 100644
--- a/src/compiler/ast-tree.h
+++ b/src/compiler/ast-tree.h
@@ -49,6 +49,7 @@ typedef enum AstTreeToken {
AST_TREE_TOKEN_TYPE_ARRAY,
AST_TREE_TOKEN_TYPE_TYPE,
AST_TREE_TOKEN_STATIC_VARS_BEGIN = AST_TREE_TOKEN_TYPE_TYPE,
+ AST_TREE_TOKEN_TYPE_ANY_TYPE,
AST_TREE_TOKEN_TYPE_VOID,
AST_TREE_TOKEN_TYPE_I8,
AST_TREE_TOKEN_TYPE_U8,
@@ -136,6 +137,7 @@ typedef struct AstTree {
} AstTree;
extern AstTree AST_TREE_TYPE_TYPE;
+extern AstTree AST_TREE_TYPE_ANY_TYPE;
extern AstTree AST_TREE_VOID_TYPE;
extern AstTree AST_TREE_BOOL_TYPE;
extern AstTree AST_TREE_I8_TYPE;