JS backend: fixed bug when explicitly use invoke method in function literal call.

(cherry picked from commit f832cee)
This commit is contained in:
develar
2013-08-23 14:47:25 +04:00
committed by Zalim Bashorov
parent f08cb5f6ca
commit 4f9485b40e
4 changed files with 28 additions and 5 deletions
@@ -16,9 +16,9 @@
package org.jetbrains.k2js.test.semantics;
public final class InvokeMethodTest extends AbstractExpressionTest {
public final class InvokeConventionTest extends AbstractExpressionTest {
public InvokeMethodTest() {
public InvokeConventionTest() {
super("invoke/");
}
@@ -27,4 +27,7 @@ public final class InvokeMethodTest extends AbstractExpressionTest {
// fooBoxIsValue("hello world!");
}
public void testExplicitInvokeLambda() throws Exception {
checkFooBoxIsOk();
}
}