JS backend: added regression tests for closure bugs.

#KT-4236 In Progress
#KT-4600 In Progress
#KT-4237 In Progress
#KT-4207 In Progress
#KT-4218 In Progress
#KT-4263 Obsolete
This commit is contained in:
Zalim Bashorov
2014-03-06 14:35:13 +04:00
parent a48dc25c46
commit fb7165c7fa
6 changed files with 114 additions and 0 deletions
@@ -143,4 +143,24 @@ public final class ClosureTest extends SingleFileTranslationTest {
public void testClosureInFewFunctionWithDifferentName() throws Exception {
checkFooBoxIsOk();
}
public void testClosureLambdaVarInLambda() throws Exception {
checkFooBoxIsOk();
}
public void testClosureThisInExtLambdaInsideMethod() throws Exception {
checkFooBoxIsOk();
}
public void testClosureInWithInsideWith() throws Exception {
checkFooBoxIsOk();
}
public void testClosureInNestedLambdasInObject() throws Exception {
checkFooBoxIsOk();
}
public void testClosureThisInLambdaInsideMethod() throws Exception {
checkFooBoxIsOk();
}
}