Skip to content

Commit af2ef65

Browse files
committed
Bugfix: Parser now recognizing binary operations
1 parent 8bca378 commit af2ef65

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

source/ParserRules.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,10 +287,12 @@ void Parser::expression() {
287287
}
288288
variable2();
289289
}
290+
expression2();
290291
break;
291292
case ID: // prefix expression
292293
next_token();
293294
variable2();
295+
expression2();
294296
break;
295297
case KW_function:
296298
next_token();

0 commit comments

Comments
 (0)