JVM: add tests for optimized getDelegate

This commit is contained in:
pyos
2021-06-30 20:34:39 +02:00
committed by Alexander Udalov
parent debd58d377
commit 6897e89bbc
9 changed files with 126 additions and 0 deletions
@@ -10722,11 +10722,21 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/delegatedProperty/delegateToAnother.kt");
}
@TestMetadata("delegateToAnotherCustom.kt")
public void testDelegateToAnotherCustom() throws Exception {
runTest("compiler/testData/codegen/box/delegatedProperty/delegateToAnotherCustom.kt");
}
@TestMetadata("delegateToAnotherMutable.kt")
public void testDelegateToAnotherMutable() throws Exception {
runTest("compiler/testData/codegen/box/delegatedProperty/delegateToAnotherMutable.kt");
}
@TestMetadata("delegateToAnotherReflection.kt")
public void testDelegateToAnotherReflection() throws Exception {
runTest("compiler/testData/codegen/box/delegatedProperty/delegateToAnotherReflection.kt");
}
@TestMetadata("delegateToGenericJavaProperty.kt")
public void testDelegateToGenericJavaProperty() throws Exception {
runTest("compiler/testData/codegen/box/delegatedProperty/delegateToGenericJavaProperty.kt");