aboutsummaryrefslogtreecommitdiff
path: root/src/compiler/ast-tree.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-07 14:32:53 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-07 14:32:53 +0330
commit20ff73d84b85db77aecb2171ce4d0e13253cccfd (patch)
tree2cc8b7f8816bc12ad97fe4a979ffccd29d347059 /src/compiler/ast-tree.h
parentd7c31e44861b4d98fbddc177002e0a311a6d26af (diff)
add lazy to variables
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 e52d8c2..4d81616 100644
--- a/src/compiler/ast-tree.h
+++ b/src/compiler/ast-tree.h
@@ -131,6 +131,7 @@ typedef struct AstTreeVariable {
AstTree *value;
AstTree *initValue;
bool isConst;
+ bool isLazy;
} AstTreeVariable;
typedef struct AstTreeVariables {