[IR] Consider TypeParameter as public declaration and serialize it properly

- Add test case when TypeParameter of generic property is exposed outside its module
This commit is contained in:
Roman Artemev
2019-06-05 14:00:43 +03:00
committed by romanart
parent efaf5a9947
commit 008cf03b06
12 changed files with 129 additions and 43 deletions
@@ -14028,6 +14028,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/properties/generalAccess.kt");
}
@TestMetadata("genericPropertyMultiModule.kt")
public void testGenericPropertyMultiModule() throws Exception {
runTest("compiler/testData/codegen/box/properties/genericPropertyMultiModule.kt");
}
@TestMetadata("kt10715.kt")
public void testKt10715() throws Exception {
runTest("compiler/testData/codegen/box/properties/kt10715.kt");
@@ -15183,6 +15183,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/properties/generalAccess.kt");
}
@TestMetadata("genericPropertyMultiModule.kt")
public void testGenericPropertyMultiModule() throws Exception {
runTest("compiler/testData/codegen/box/properties/genericPropertyMultiModule.kt");
}
@TestMetadata("kt10715.kt")
public void testKt10715() throws Exception {
runTest("compiler/testData/codegen/box/properties/kt10715.kt");