We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfffa5f commit 72d6187Copy full SHA for 72d6187
src/main/java/parser/syntax_tree/WhileStatement.java
@@ -54,7 +54,6 @@ public IValue execute(ExecutionContext context) {
54
if (expr instanceof BooleanValue && ((BooleanValue) expr).getValue()) {
55
body.execute(context);
56
} else {
57
-
58
break;
59
}
60
} while (true);
0 commit comments