JVM_IR: fix source file name for mutlifile class facades

This commit is contained in:
Dmitry Petrov
2020-07-24 15:46:49 +03:00
parent 89a0b3e944
commit 43fcb2330e
15 changed files with 128 additions and 26 deletions
@@ -104,6 +104,16 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
runTest("compiler/testData/codegen/bytecodeListing/localFunctionInInitBlock.kt");
}
@TestMetadata("multiClassPartSourceMultipleParts.kt")
public void testMultiClassPartSourceMultipleParts() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/multiClassPartSourceMultipleParts.kt");
}
@TestMetadata("multiClassPartSourceSinglePart.kt")
public void testMultiClassPartSourceSinglePart() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/multiClassPartSourceSinglePart.kt");
}
@TestMetadata("noCollectionStubMethodsInInterface.kt")
public void testNoCollectionStubMethodsInInterface() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/noCollectionStubMethodsInInterface.kt");
@@ -104,6 +104,16 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
runTest("compiler/testData/codegen/bytecodeListing/localFunctionInInitBlock.kt");
}
@TestMetadata("multiClassPartSourceMultipleParts.kt")
public void testMultiClassPartSourceMultipleParts() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/multiClassPartSourceMultipleParts.kt");
}
@TestMetadata("multiClassPartSourceSinglePart.kt")
public void testMultiClassPartSourceSinglePart() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/multiClassPartSourceSinglePart.kt");
}
@TestMetadata("noCollectionStubMethodsInInterface.kt")
public void testNoCollectionStubMethodsInInterface() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/noCollectionStubMethodsInInterface.kt");