JS backend: add simple test connected with frontend bug 'isStatement' for function body == 'hasBlockBody'

This commit is contained in:
Erokhin Stanislav
2013-10-04 15:11:40 +04:00
parent a70782aaf7
commit 53abc956cc
2 changed files with 15 additions and 0 deletions
@@ -30,6 +30,10 @@ public class FunctionTest extends AbstractExpressionTest {
fooBoxTest();
}
public void testWhenFunction() throws Exception {
checkFooBoxIsOk();
}
public void testFunctionLiteral() throws Exception {
fooBoxTest();
}
@@ -0,0 +1,11 @@
package foo
fun foo(a: Int): Int = when {
a == 1 || a + 2 == 3 -> 5
else -> 6
}
fun box(): String {
if (foo(1) != 5) return "fail1: ${foo(1)}"
if (foo(2) != 6) return "fail2: ${foo(1)}"
return "OK"
}