Added TODO

expression_parsing.sync-conflict-20210316-090018-O3W7KWN
Tristan B. V. Kildaire 2021-03-03 21:38:53 +02:00
parent f679a6dd83
commit ffa94ba6e5
2 changed files with 5 additions and 3 deletions

View File

@ -261,9 +261,11 @@ public final class Parser
/* Get the next token */ /* Get the next token */
nextToken(); nextToken();
} }
/* TODO: Add funcCal symbol type */
else else
{ {
gprintln("parseExpression(): NO MATCH", DebugType.ERROR);
/* TODO: Something isn't right here */
} }
gprintln("ParseExpression: Finished", DebugType.WARNING); gprintln("ParseExpression: Finished", DebugType.WARNING);

View File

@ -27,9 +27,9 @@ void main(int hello, byte d)
{ {
while(1) while(1)
{ {
while(2) while(2+2)
{ {
} }
} }
} }