JVM_IR KT-36994 don't generate stub if present in superclass
This commit is contained in:
+10
@@ -254,6 +254,11 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/emptyList.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("extendingAbstractCollection.kt")
|
||||
public void testExtendingAbstractCollection() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/extendingAbstractCollection.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noStubsForCollection.kt")
|
||||
public void testNoStubsForCollection() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsForCollection.kt");
|
||||
@@ -284,6 +289,11 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsInJavaSuperClass.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noStubsInJavaSuperClass2.kt")
|
||||
public void testNoStubsInJavaSuperClass2() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsInJavaSuperClass2.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noStubsInMutableIterable.kt")
|
||||
public void testNoStubsInMutableIterable() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsInMutableIterable.kt");
|
||||
|
||||
+10
@@ -254,6 +254,11 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/emptyList.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("extendingAbstractCollection.kt")
|
||||
public void testExtendingAbstractCollection() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/extendingAbstractCollection.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noStubsForCollection.kt")
|
||||
public void testNoStubsForCollection() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsForCollection.kt");
|
||||
@@ -284,6 +289,11 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsInJavaSuperClass.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noStubsInJavaSuperClass2.kt")
|
||||
public void testNoStubsInJavaSuperClass2() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsInJavaSuperClass2.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noStubsInMutableIterable.kt")
|
||||
public void testNoStubsInMutableIterable() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsInMutableIterable.kt");
|
||||
|
||||
Reference in New Issue
Block a user