Skip to content

Commit 122e512

Browse files
klueverError Prone Team
authored and
Error Prone Team
committed
Add InlineMe:CheckFixCompiles flag, which allows InlineMe users to optionally check that the generated fixes compile (only if there are no new imports).
This flag is disabled by default, due to (external) performance issues. PiperOrigin-RevId: 405468093
1 parent dd91993 commit 122e512

File tree

2 files changed

+17
-10
lines changed
  • core/src

2 files changed

+17
-10
lines changed

core/src/main/java/com/google/errorprone/bugpatterns/inlineme/Inliner.java

+7-5
Original file line numberDiff line numberDiff line change
@@ -83,20 +83,22 @@ public final class Inliner extends BugChecker
8383

8484
private static final Splitter PACKAGE_SPLITTER = Splitter.on('.');
8585

86+
private static final String CHECK_FIX_COMPILES = "InlineMe:CheckFixCompiles";
87+
8688
private static final String INLINE_ME = "InlineMe";
8789
private static final String VALIDATION_DISABLED = "InlineMeValidationDisabled";
8890

8991
private final ImmutableSet<String> apiPrefixes;
9092
private final boolean skipCallsitesWithComments;
93+
private final boolean checkFixCompiles;
9194

9295
public Inliner(ErrorProneFlags flags) {
9396
this.apiPrefixes =
9497
ImmutableSet.copyOf(flags.getSet(PREFIX_FLAG).orElse(ImmutableSet.<String>of()));
9598
this.skipCallsitesWithComments = flags.getBoolean(SKIP_COMMENTS_FLAG).orElse(true);
99+
this.checkFixCompiles = flags.getBoolean(CHECK_FIX_COMPILES).orElse(false);
96100
}
97101

98-
// TODO(b/163596864): Add support for inlining fields
99-
100102
@Override
101103
public Description matchNewClass(NewClassTree tree, VisitorState state) {
102104
MethodSymbol symbol = getSymbol(tree);
@@ -257,9 +259,9 @@ private Description match(
257259

258260
SuggestedFix fix = builder.build();
259261

260-
// If there are no imports to add, then there's no new dependencies, so we can verify that it
261-
// compilesWithFix(); if there are new imports to add, then we can't validate that it compiles.
262-
if (fix.getImportsToAdd().isEmpty()) {
262+
if (checkFixCompiles && fix.getImportsToAdd().isEmpty()) {
263+
// If there are no new imports being added (then there are no new dependencies). Therefore, we
264+
// can verify that the fix compiles (if CHECK_FIX_COMPILES is enabled).
263265
return SuggestedFixes.compilesWithFix(fix, state)
264266
? describe(tree, fix, api)
265267
: Description.NO_MATCH;

core/src/test/java/com/google/errorprone/bugpatterns/inlineme/InlinerTest.java

+10-5
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ public void testVarargsWithPrecedingElements() {
885885

886886
@Test
887887
public void testReplaceWithJustParameter() {
888-
refactoringTestHelper
888+
bugCheckerWithCheckFixCompiles()
889889
.allowBreakingChanges()
890890
.addInputLines(
891891
"Client.java",
@@ -922,7 +922,7 @@ public void testReplaceWithJustParameter() {
922922

923923
@Test
924924
public void testOrderOfOperations() {
925-
refactoringTestHelper
925+
bugCheckerWithCheckFixCompiles()
926926
.allowBreakingChanges()
927927
.addInputLines(
928928
"Client.java",
@@ -957,7 +957,7 @@ public void testOrderOfOperations() {
957957

958958
@Test
959959
public void testOrderOfOperationsWithParamAddition() {
960-
refactoringTestHelper
960+
bugCheckerWithCheckFixCompiles()
961961
.allowBreakingChanges()
962962
.addInputLines(
963963
"Client.java",
@@ -992,7 +992,7 @@ public void testOrderOfOperationsWithParamAddition() {
992992

993993
@Test
994994
public void testOrderOfOperationsWithTrailingOperand() {
995-
refactoringTestHelper
995+
bugCheckerWithCheckFixCompiles()
996996
.allowBreakingChanges()
997997
.addInputLines(
998998
"Client.java",
@@ -1141,8 +1141,13 @@ public void testCustomInlineMe() {
11411141
.doTest();
11421142
}
11431143

1144-
private BugCheckerRefactoringTestHelper buildBugCheckerWithPrefixFlag(String prefix) {
1144+
private BugCheckerRefactoringTestHelper bugCheckerWithPrefixFlag(String prefix) {
11451145
return BugCheckerRefactoringTestHelper.newInstance(Inliner.class, getClass())
11461146
.setArgs("-XepOpt:" + PREFIX_FLAG + "=" + prefix);
11471147
}
1148+
1149+
private BugCheckerRefactoringTestHelper bugCheckerWithCheckFixCompiles() {
1150+
return BugCheckerRefactoringTestHelper.newInstance(Inliner.class, getClass())
1151+
.setArgs("-XepOpt:InlineMe:CheckFixCompiles=true");
1152+
}
11481153
}

0 commit comments

Comments
 (0)