diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-24 12:30:50 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-24 12:30:50 +0330 |
commit | 81c83f4233dba3851333cb69ab9727659e253d1b (patch) | |
tree | d54c586a7df0e5a3e5185eeabc25c7f6bd48e1b4 /src/compiler/parser.h | |
parent | ffe049371a64e0b41fdc777106f768b16b2cd9b2 (diff) |
fixing some problems in parsing
adding more stuff to the example
Diffstat (limited to 'src/compiler/parser.h')
-rw-r--r-- | src/compiler/parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/parser.h b/src/compiler/parser.h index 6ef1427..1b202c3 100644 --- a/src/compiler/parser.h +++ b/src/compiler/parser.h @@ -272,6 +272,7 @@ ParserNode *parserStruct(LexerNode *node, LexerNode *end, ParserNode *parent); bool isAllArguments(const ParserNodeArray *nodes); bool isExpression(ParserNode *node); +bool parserIsFunction(ParserNode *node); bool isType(ParserNode *node); bool isValue(ParserNode *node); |