Skip to content

Commit e46b724

Browse files
Update basic_parser.c: Removed comment
1 parent 2af18d7 commit e46b724

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

lib/basic/src/basic_parser.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@
99
#include <stdlib.h>
1010
#include <string.h>
1111

12-
// TODO: Fundamentally change how expressions are evaluated
13-
// Currently, having function1(function2() + 1) is parsed incorrectly.
14-
// first, function2() is added to the node, but "+ 1" is evaluated entirely independently of function2()
15-
// so it fails to find op1. The whole thing should be treated as one expression.
16-
1712
/* BASIC PARSER */
1813

1914
int basic_parse_id_is_fn_call(BASICToken *tokens, int idx, int len)

0 commit comments

Comments
 (0)