Cleaned up

This commit is contained in:
Tristan B. Velloza Kildaire 2021-03-16 07:30:18 +02:00
parent 18a5bdca16
commit d89e999958
1 changed files with 3 additions and 2 deletions

View File

@ -342,12 +342,13 @@ public final class Parser
*/
else if(symbol == SymbolType.LBRACE)
{
/* Consume the `(` */
nextToken();
/* Parse the inner expression till terminator */
parseExpression();
/* Consume the terminator */
nextToken();
}
else