diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-03-29 20:05:54 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-03-29 20:05:54 +0330 |
commit | 2316751587cf3998112f4e076b5b33080ce66124 (patch) | |
tree | 2d9a2388a9028ea0262b7766511dd7b5d918a843 /src/compiler/ast-tree.h | |
parent | e73184852285ffbb110a96ca7d7e1906029ba825 (diff) |
fix bug in conditions
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r-- | src/compiler/ast-tree.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h index a553a1d..d6c2523 100644 --- a/src/compiler/ast-tree.h +++ b/src/compiler/ast-tree.h @@ -252,6 +252,7 @@ bool isCircularDependenciesVariable(AstTreeHelper *helper, bool setAllTypesRoot(AstTreeRoot *root, AstTreeHelper *helper); bool setAllTypes(AstTree *tree, AstTreeSetTypesHelper helper, AstTreeFunction *function); +bool setTypesValueBool(AstTree *tree, AstTreeSetTypesHelper helper); bool setTypesValueInt(AstTree *tree, AstTreeSetTypesHelper helper); bool setTypesValueFloat(AstTree *tree, AstTreeSetTypesHelper helper); bool setTypesValueNull(AstTree *tree, AstTreeSetTypesHelper helper); |