Support get/set on KProperty objects for delegated properties

This commit is contained in:
Alexander Udalov
2015-10-26 16:23:18 +03:00
parent f2a37b4150
commit b8b98b4eaa
5 changed files with 111 additions and 26 deletions
@@ -1467,6 +1467,12 @@ public class BlackBoxWithStdlibCodegenTestGenerated extends AbstractBlackBoxCode
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxWithStdlib/delegatedProperty/stackOverflowOnCallFromGetValue.kt");
doTestWithStdlib(fileName);
}
@TestMetadata("useKPropertyLater.kt")
public void testUseKPropertyLater() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxWithStdlib/delegatedProperty/useKPropertyLater.kt");
doTestWithStdlib(fileName);
}
}
@TestMetadata("compiler/testData/codegen/boxWithStdlib/enum")