JS backend: support for while/do while with complex conditions

This commit is contained in:
Michael Nedzelsky
2014-08-20 14:46:55 +04:00
parent 53f0e6dcd2
commit d969e58b88
6 changed files with 193 additions and 6 deletions
@@ -25,4 +25,20 @@ public class WhileTest extends AbstractExpressionTest {
public void testWhileWithComplexOneStatement() throws Exception {
checkFooBoxIsOk();
}
public void testWhileWithComplexCondition() throws Exception {
checkFooBoxIsOk();
}
public void testWhileWithComplexConditionAndContinue() throws Exception {
checkFooBoxIsOk();
}
public void testDoWhileWithComplexCondition() throws Exception {
checkFooBoxIsOk();
}
public void testDoWhileWithComplexConditionAndContinue() throws Exception {
checkFooBoxIsOk();
}
}