Fixed a problem which sometimes caused expressions to be evaluated in the wrong order.

This commit is contained in:
Pavel V. Talanov
2012-03-27 17:16:06 +04:00
parent 25323d560d
commit 1e180f550f
17 changed files with 611 additions and 5 deletions
@@ -0,0 +1,53 @@
/*
* Copyright 2010-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.k2js.test.semantics;
import org.jetbrains.k2js.test.SingleFileTranslationTest;
/**
* @author Pavel Talanov
*/
public final class DangerousTest extends SingleFileTranslationTest {
public DangerousTest() {
super("dangerous/");
}
public void testIfAsFunArgument() throws Exception {
checkFooBoxIsTrue("ifAsFunArgument.kt");
}
public void testIfAsPlusArgument() throws Exception {
checkFooBoxIsTrue("ifAsPlusArgument.kt");
}
public void testWhenAsMinusArgument() throws Exception {
checkFooBoxIsTrue("whenAsMinusArgument.kt");
}
public void testEvaluationOrder() throws Exception {
checkFooBoxIsTrue("evaluationOrder.kt");
}
public void testDangerousInsideDangerous() throws Exception {
checkFooBoxIsTrue("dangerousInsideDangerous.kt");
}
public void test2dangerousInExpression() throws Exception {
checkFooBoxIsTrue("2dangerousInExpression.kt");
}
}
@@ -52,7 +52,8 @@ public final class MiscTest extends AbstractExpressionTest {
try {
checkFooBoxIsTrue("ifAsExpressionWithThrow.kt");
fail();
} catch (JavaScriptException e) {
}
catch (JavaScriptException e) {
}
}