diff options
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r-- | src/compiler/ast-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h index 2e43973..645ef5f 100644 --- a/src/compiler/ast-tree.h +++ b/src/compiler/ast-tree.h @@ -140,7 +140,7 @@ AstTree *astTreeParseVariable(ParserNode *parserNode, size_t variables_size); bool hasTypeOf(AstTree *value, const AstTree *type); -bool isFunction(AstTree *value); +AstTreeFunction* getFunction(AstTree *value); bool isConst(AstTree *value); AstTree *makeTypeOf(AstTree *value); bool typeIsEqual(const AstTree *type0, const AstTree *type1); |