[FE, IR] Support deserialization

This commit is contained in:
Anastasiya Shadrina
2021-10-29 05:53:47 +07:00
committed by TeamCityServer
parent 2fbfee3e11
commit 617af898b0
8 changed files with 118 additions and 6 deletions
@@ -15975,6 +15975,12 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
public void testSimple() throws Exception {
runTest("compiler/testData/codegen/box/extensionClasses/simple.kt");
}
@Test
@TestMetadata("useFromAnotherModule.kt")
public void testUseFromAnotherModule() throws Exception {
runTest("compiler/testData/codegen/box/extensionClasses/useFromAnotherModule.kt");
}
}
@Nested
@@ -16217,6 +16223,12 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
runTest("compiler/testData/codegen/box/extensionFunctions/contextReceivers/this.kt");
}
@Test
@TestMetadata("useFromAnotherModule.kt")
public void testUseFromAnotherModule() throws Exception {
runTest("compiler/testData/codegen/box/extensionFunctions/contextReceivers/useFromAnotherModule.kt");
}
@Nested
@TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers/fromKEEP")
@TestDataPath("$PROJECT_ROOT")