JVM IR: Fix visibility of protected/private functions with reified types
This commit is contained in:
committed by
Alexander Udalov
parent
dad10e94aa
commit
98a9e142e8
+15
@@ -906,11 +906,26 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/InlineReifiedPropertyMultifile.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("inlineReifiedPropertyVisibility.kt")
|
||||
public void testInlineReifiedPropertyVisibility() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/inlineReifiedPropertyVisibility.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("inlineReifiedVisibility.kt")
|
||||
public void testInlineReifiedVisibility() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/inlineReifiedVisibility.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("simpleNamed.kt")
|
||||
public void testSimpleNamed() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/simpleNamed.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("suspendInlineReified.kt")
|
||||
public void testSuspendInlineReified() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/suspendInlineReified.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("compiler/testData/codegen/bytecodeListing/inline/enclosingInfo")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
|
||||
+15
@@ -906,11 +906,26 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/InlineReifiedPropertyMultifile.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("inlineReifiedPropertyVisibility.kt")
|
||||
public void testInlineReifiedPropertyVisibility() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/inlineReifiedPropertyVisibility.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("inlineReifiedVisibility.kt")
|
||||
public void testInlineReifiedVisibility() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/inlineReifiedVisibility.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("simpleNamed.kt")
|
||||
public void testSimpleNamed() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/simpleNamed.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("suspendInlineReified.kt")
|
||||
public void testSuspendInlineReified() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/inline/suspendInlineReified.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("compiler/testData/codegen/bytecodeListing/inline/enclosingInfo")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
|
||||
Reference in New Issue
Block a user