JS backend: add support for break, return, continue, throw in expressions
This commit is contained in:
@@ -121,4 +121,15 @@ public class EvaluationOrderTest extends AbstractExpressionTest {
|
||||
checkFooBoxIsOk();
|
||||
}
|
||||
|
||||
public void testIntrinsicWithBreakContinueReturn() throws Exception {
|
||||
checkFooBoxIsOk();
|
||||
}
|
||||
|
||||
public void testCallWithBreakContinueReturn() throws Exception {
|
||||
checkFooBoxIsOk();
|
||||
}
|
||||
|
||||
public void testLoopWithBreakContinueReturnInCondition() throws Exception {
|
||||
checkFooBoxIsOk();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ public final class ForeachTest extends AbstractExpressionTest {
|
||||
checkFooBoxIsOk();
|
||||
}
|
||||
|
||||
public void testForWithWhile() throws Exception {
|
||||
public void testLabeledForWithWhile() throws Exception {
|
||||
checkFooBoxIsOk();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user