aboutsummaryrefslogtreecommitdiff
path: root/src/compiler/ast-tree.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-29 22:17:48 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-29 22:19:31 +0330
commit31637af96ec7555b81e742114ff41d80f37e3e6b (patch)
treea93b4ce3da7f16e696d1447f5fd9cd288e47e132 /src/compiler/ast-tree.h
parent9c7d2cad8ef9bcc019af3924fb72dd896c8c77e7 (diff)
better anytype
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r--src/compiler/ast-tree.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h
index 904d6f7..abe38c2 100644
--- a/src/compiler/ast-tree.h
+++ b/src/compiler/ast-tree.h
@@ -433,6 +433,7 @@ AstTree *astTreeParseBracket(const ParserNode *parserNode, AstTreeToken token);
bool isFunction(AstTree *value);
bool isShapeShifter(AstTreeFunction *function);
+bool hasAnyTypeInside(AstTree *type);
bool isConst(AstTree *tree);
AstTree *makeTypeOf(AstTree *value);
AstTree *makeTypeOfFunction(AstTreeFunction *function, const char *str_begin,