[FIR] Fix naming of local classes when serializing metadata

^KT-63655: Fixed
^KT-63901: Fixed
^KT-63988: Fixed
This commit is contained in:
vladislav.grechko
2024-01-29 18:02:09 +01:00
committed by Space Team
parent 78876b32e9
commit 54858c2118
49 changed files with 327 additions and 182 deletions
@@ -45880,6 +45880,12 @@ public class LLFirBlackBoxCodegenBasedTestGenerated extends AbstractLLFirBlackBo
runTest("compiler/testData/codegen/box/reflection/jvmKTypeCaching.kt");
}
@Test
@TestMetadata("kt63988.kt")
public void testKt63988() throws Exception {
runTest("compiler/testData/codegen/box/reflection/kt63988.kt");
}
@Nested
@TestMetadata("compiler/testData/codegen/box/reflection/annotations")
@TestDataPath("$PROJECT_ROOT")
@@ -47860,6 +47866,12 @@ public class LLFirBlackBoxCodegenBasedTestGenerated extends AbstractLLFirBlackBo
public void testLocalClassesAndAnonymousObjects() throws Exception {
runTest("compiler/testData/codegen/box/reflection/localClasses/localClassesAndAnonymousObjects.kt");
}
@Test
@TestMetadata("localNestedClasses.kt")
public void testLocalNestedClasses() throws Exception {
runTest("compiler/testData/codegen/box/reflection/localClasses/localNestedClasses.kt");
}
}
@Nested
@@ -45880,6 +45880,12 @@ public class LLFirReversedBlackBoxCodegenBasedTestGenerated extends AbstractLLFi
runTest("compiler/testData/codegen/box/reflection/jvmKTypeCaching.kt");
}
@Test
@TestMetadata("kt63988.kt")
public void testKt63988() throws Exception {
runTest("compiler/testData/codegen/box/reflection/kt63988.kt");
}
@Nested
@TestMetadata("compiler/testData/codegen/box/reflection/annotations")
@TestDataPath("$PROJECT_ROOT")
@@ -47860,6 +47866,12 @@ public class LLFirReversedBlackBoxCodegenBasedTestGenerated extends AbstractLLFi
public void testLocalClassesAndAnonymousObjects() throws Exception {
runTest("compiler/testData/codegen/box/reflection/localClasses/localClassesAndAnonymousObjects.kt");
}
@Test
@TestMetadata("localNestedClasses.kt")
public void testLocalNestedClasses() throws Exception {
runTest("compiler/testData/codegen/box/reflection/localClasses/localNestedClasses.kt");
}
}
@Nested