Use property access: suppress for reserved words #KT-23775 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-05-07 17:48:36 +03:00
committed by Mikhail Glukhikh
parent 240b9fd97a
commit 4ee9db7a6c
10 changed files with 87 additions and 0 deletions
@@ -15336,6 +15336,16 @@ public class IntentionTestGenerated extends AbstractIntentionTest {
runTest("idea/testData/intentions/usePropertyAccessSyntax/getImplicitReceiver.kt");
}
@TestMetadata("getReservedWord1.kt")
public void testGetReservedWord1() throws Exception {
runTest("idea/testData/intentions/usePropertyAccessSyntax/getReservedWord1.kt");
}
@TestMetadata("getReservedWord2.kt")
public void testGetReservedWord2() throws Exception {
runTest("idea/testData/intentions/usePropertyAccessSyntax/getReservedWord2.kt");
}
@TestMetadata("getSafeCall.kt")
public void testGetSafeCall() throws Exception {
runTest("idea/testData/intentions/usePropertyAccessSyntax/getSafeCall.kt");
@@ -15396,6 +15406,16 @@ public class IntentionTestGenerated extends AbstractIntentionTest {
runTest("idea/testData/intentions/usePropertyAccessSyntax/setImplicitReceiver.kt");
}
@TestMetadata("setReservedWord1.kt")
public void testSetReservedWord1() throws Exception {
runTest("idea/testData/intentions/usePropertyAccessSyntax/setReservedWord1.kt");
}
@TestMetadata("setReservedWord2.kt")
public void testSetReservedWord2() throws Exception {
runTest("idea/testData/intentions/usePropertyAccessSyntax/setReservedWord2.kt");
}
@TestMetadata("setSafeCall.kt")
public void testSetSafeCall() throws Exception {
runTest("idea/testData/intentions/usePropertyAccessSyntax/setSafeCall.kt");