Add "Remove inline modifier" quick fix for NOTHING_TO_INLINE #KT-5187 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-09-21 18:00:13 +09:00
committed by Mikhail Glukhikh
parent 65f23f3c4e
commit 7d89205618
5 changed files with 37 additions and 0 deletions
@@ -574,5 +574,7 @@ class QuickFixRegistrar : QuickFixContributor {
ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS.registerFactory(RemoveDefaultParameterValueFix)
RESOLUTION_TO_CLASSIFIER.registerFactory(ConvertToAnonymousObjectFix)
NOTHING_TO_INLINE.registerFactory(RemoveModifierFix.createRemoveModifierFactory(isRedundant = false))
}
}
+2
View File
@@ -0,0 +1,2 @@
// "Remove 'inline' modifier" "true"
<caret>inline fun test() {}
@@ -0,0 +1,2 @@
// "Remove 'inline' modifier" "true"
fun test() {}
@@ -3251,6 +3251,19 @@ public class QuickFixMultiFileTestGenerated extends AbstractQuickFixMultiFileTes
}
}
@TestMetadata("idea/testData/quickfix/redundantInline")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class RedundantInline extends AbstractQuickFixMultiFileTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest(this::doTestWithExtraFile, TargetBackend.ANY, testDataFilePath);
}
public void testAllFilesPresentInRedundantInline() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/quickfix/redundantInline"), Pattern.compile("^(\\w+)\\.((before\\.Main\\.\\w+)|(test))$"), TargetBackend.ANY, true);
}
}
@TestMetadata("idea/testData/quickfix/redundantLateinit")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
@@ -8986,6 +8986,24 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest {
}
}
@TestMetadata("idea/testData/quickfix/redundantInline")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class RedundantInline extends AbstractQuickFixTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest(this::doTest, TargetBackend.ANY, testDataFilePath);
}
public void testAllFilesPresentInRedundantInline() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/quickfix/redundantInline"), Pattern.compile("^([\\w\\-_]+)\\.kt$"), TargetBackend.ANY, true);
}
@TestMetadata("function.kt")
public void testFunction() throws Exception {
runTest("idea/testData/quickfix/redundantInline/function.kt");
}
}
@TestMetadata("idea/testData/quickfix/redundantLateinit")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)