1 parent 2af18d7 commit e46b724Copy full SHA for e46b724
1 file changed
lib/basic/src/basic_parser.c
@@ -9,11 +9,6 @@
9
#include <stdlib.h>
10
#include <string.h>
11
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
-
17
/* BASIC PARSER */
18
19
int basic_parse_id_is_fn_call(BASICToken *tokens, int idx, int len)
0 commit comments