Moving local fun callee generation to CallReceiver

This commit is contained in:
Mikhael Bogdanov
2014-03-31 15:53:00 +04:00
parent 7dc662f613
commit 0d239a3e0e
6 changed files with 82 additions and 11 deletions
@@ -2961,6 +2961,11 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
doTest("compiler/testData/codegen/box/functions/localFunctions/kt4119_2.kt");
}
@TestMetadata("kt4514.kt")
public void testKt4514() throws Exception {
doTest("compiler/testData/codegen/box/functions/localFunctions/kt4514.kt");
}
@TestMetadata("kt4777.kt")
public void testKt4777() throws Exception {
doTest("compiler/testData/codegen/box/functions/localFunctions/kt4777.kt");
@@ -2971,6 +2976,16 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
doTest("compiler/testData/codegen/box/functions/localFunctions/kt4783.kt");
}
@TestMetadata("kt4784.kt")
public void testKt4784() throws Exception {
doTest("compiler/testData/codegen/box/functions/localFunctions/kt4784.kt");
}
@TestMetadata("localExtensionOnNullableParameter.kt")
public void testLocalExtensionOnNullableParameter() throws Exception {
doTest("compiler/testData/codegen/box/functions/localFunctions/localExtensionOnNullableParameter.kt");
}
@TestMetadata("localFunctionInConstructor.kt")
public void testLocalFunctionInConstructor() throws Exception {
doTest("compiler/testData/codegen/box/functions/localFunctions/localFunctionInConstructor.kt");