Removed redundancy

if_statement_parsing
Tristan B. Kildaire 2021-03-18 21:06:18 +02:00
parent 808c124724
commit 7882b49c72
1 changed files with 0 additions and 5 deletions

View File

@ -189,11 +189,6 @@ public static SymbolType getSymbolType(Token tokenIn)
{
return SymbolType.RETURN;
}
/* else keyword */
else if(cmp(token, "else") == 0)
{
return SymbolType.ELSE;
}
/* switch keyword */
else if(cmp(token, "switch") == 0)
{