From 20ff73d84b85db77aecb2171ce4d0e13253cccfd Mon Sep 17 00:00:00 2001 From: A404M Date: Wed, 7 May 2025 14:32:53 +0330 Subject: add lazy to variables --- src/compiler/ast-tree.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/compiler/ast-tree.h') 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 { -- cgit v1.2.3