JVM KT-22465 don't generate accessor to private setter in other class

This commit is contained in:
Dmitry Petrov
2020-10-23 14:07:56 +03:00
parent 4d63ecd83c
commit b1629cc5f4
20 changed files with 499 additions and 5 deletions
@@ -22533,6 +22533,26 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
runTest("compiler/testData/codegen/box/properties/accessToPrivateSetter.kt");
}
@TestMetadata("accessorForProtectedPropertyWithPrivateSetter.kt")
public void testAccessorForProtectedPropertyWithPrivateSetter() throws Exception {
runTest("compiler/testData/codegen/box/properties/accessorForProtectedPropertyWithPrivateSetter.kt");
}
@TestMetadata("accessorForProtectedPropertyWithPrivateSetterInObjectLiteral.kt")
public void testAccessorForProtectedPropertyWithPrivateSetterInObjectLiteral() throws Exception {
runTest("compiler/testData/codegen/box/properties/accessorForProtectedPropertyWithPrivateSetterInObjectLiteral.kt");
}
@TestMetadata("accessorForProtectedPropertyWithPrivateSetterViaSuper.kt")
public void testAccessorForProtectedPropertyWithPrivateSetterViaSuper() throws Exception {
runTest("compiler/testData/codegen/box/properties/accessorForProtectedPropertyWithPrivateSetterViaSuper.kt");
}
@TestMetadata("accessorForProtectedPropertyWithPrivateSetterWithIntermediateClass.kt")
public void testAccessorForProtectedPropertyWithPrivateSetterWithIntermediateClass() throws Exception {
runTest("compiler/testData/codegen/box/properties/accessorForProtectedPropertyWithPrivateSetterWithIntermediateClass.kt");
}
public void testAllFilesPresentInProperties() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/properties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
}