JVM IR: Fix visibility of protected/private functions with reified types

This commit is contained in:
Steven Schäfer
2021-01-06 17:05:35 +01:00
committed by Alexander Udalov
parent dad10e94aa
commit 98a9e142e8
11 changed files with 129 additions and 24 deletions
@@ -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)
@@ -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)