remove more logging

This commit is contained in:
dfsek
2020-12-30 21:38:23 -07:00
parent 97f6cda4ad
commit 1826adf1c2

View File

@@ -158,9 +158,7 @@ public class Parser {
while(tokens.hasNext() && tokens.get().getType().equals(Token.Type.ELSE)) {
tokens.consume(); // Consume else.
System.out.println("int: " + tokens.get());
if(tokens.get().getType().equals(Token.Type.IF_STATEMENT)) {
System.out.println("else if");
tokens.consume(); // Consume if.
Returnable<?> elseCondition = parseExpression(tokens, true, variableMap);
ParserUtil.checkReturnType(elseCondition, Returnable.ReturnType.BOOLEAN);