Replace last SourceInterpreter with specific one in inliner

#KT-38489: Fixed
This commit is contained in:
Ilmir Usmanov
2020-05-06 14:26:03 +02:00
parent 2c88844409
commit 05797afaf8
10 changed files with 164 additions and 74 deletions
@@ -1111,6 +1111,11 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
runTest("compiler/testData/codegen/boxInline/complexStack/asCheck2.kt");
}
@TestMetadata("breaContinuekInInlineLambdaArgument.kt")
public void testBreaContinuekInInlineLambdaArgument() throws Exception {
runTest("compiler/testData/codegen/boxInline/complexStack/breaContinuekInInlineLambdaArgument.kt");
}
@TestMetadata("simple.kt")
public void testSimple() throws Exception {
runTest("compiler/testData/codegen/boxInline/complexStack/simple.kt");
@@ -1135,6 +1140,11 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
public void testSimpleExtension() throws Exception {
runTest("compiler/testData/codegen/boxInline/complexStack/simpleExtension.kt");
}
@TestMetadata("spillConstructorArgumentsAndInlineLambdaParameter.kt")
public void testSpillConstructorArgumentsAndInlineLambdaParameter() throws Exception {
runTest("compiler/testData/codegen/boxInline/complexStack/spillConstructorArgumentsAndInlineLambdaParameter.kt");
}
}
@TestMetadata("compiler/testData/codegen/boxInline/contracts")