-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support void placeholder expressions in Refaster
PiperOrigin-RevId: 450510643
- Loading branch information
1 parent
b822dd4
commit 7cd5def
Showing
6 changed files
with
119 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...m/google/errorprone/refaster/testdata/input/VoidExpressionPlaceholderTemplateExample.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright 2022 The Error Prone Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.errorprone.refaster.testdata; | ||
|
||
import java.util.List; | ||
|
||
/** Test data for {@code VoidExpressionPlaceholderTemplate}. */ | ||
public class VoidExpressionPlaceholderTemplateExample { | ||
public static void foo(String s) { | ||
s.length(); | ||
} | ||
|
||
public void positiveExample(List<String> list) { | ||
list.stream().forEach(x -> foo(x)); | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
.../google/errorprone/refaster/testdata/output/VoidExpressionPlaceholderTemplateExample.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright 2022 The Error Prone Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.errorprone.refaster.testdata; | ||
|
||
import java.util.List; | ||
|
||
/** Test data for {@code VoidExpressionPlaceholderTemplate}. */ | ||
public class VoidExpressionPlaceholderTemplateExample { | ||
public static void foo(String s) { | ||
s.length(); | ||
} | ||
|
||
public void positiveExample(List<String> list) { | ||
list.forEach(x->foo(x)); | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
...a/com/google/errorprone/refaster/testdata/template/VoidExpressionPlaceholderTemplate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2022 The Error Prone Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.errorprone.refaster.testdata.template; | ||
|
||
import com.google.errorprone.refaster.annotation.AfterTemplate; | ||
import com.google.errorprone.refaster.annotation.BeforeTemplate; | ||
import com.google.errorprone.refaster.annotation.Placeholder; | ||
import java.util.Collection; | ||
|
||
/** Test case with a void placeholder method that is used as an expression. */ | ||
public abstract class VoidExpressionPlaceholderTemplate<T> { | ||
@Placeholder | ||
abstract void consume(T t); | ||
|
||
@BeforeTemplate | ||
void before(Collection<T> collection) { | ||
collection.stream().forEach(x -> consume(x)); | ||
} | ||
|
||
@AfterTemplate | ||
void after(Collection<T> collection) { | ||
collection.forEach(x -> consume(x)); | ||
} | ||
} |