aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WithByOnRecord.java
diff options
context:
space:
mode:
authorRawi01 <Rawi01@users.noreply.github.com>2020-09-12 14:35:40 +0200
committerRawi01 <Rawi01@users.noreply.github.com>2020-09-12 14:35:40 +0200
commitfa0b5249cf5fee28d9be13ecdf0225f651f686aa (patch)
tree881cc34c60f69d7895be222201a059d268d91cf0 /test/transform/resource/after-ecj/WithByOnRecord.java
parent0064c534273d9fb877f7e570f7a430060c88a5fb (diff)
downloadlombok-fa0b5249cf5fee28d9be13ecdf0225f651f686aa.tar.gz
lombok-fa0b5249cf5fee28d9be13ecdf0225f651f686aa.tar.bz2
lombok-fa0b5249cf5fee28d9be13ecdf0225f651f686aa.zip
Support With(By) on records and record components
This also replaces the javac/eclipse specific code for searching the parent fields of an annotation by a search based on the lombok AST.
Diffstat (limited to 'test/transform/resource/after-ecj/WithByOnRecord.java')
-rw-r--r--test/transform/resource/after-ecj/WithByOnRecord.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/transform/resource/after-ecj/WithByOnRecord.java b/test/transform/resource/after-ecj/WithByOnRecord.java
index 9048c9f4..c40841c8 100644
--- a/test/transform/resource/after-ecj/WithByOnRecord.java
+++ b/test/transform/resource/after-ecj/WithByOnRecord.java
@@ -1,8 +1,8 @@
import lombok.experimental.WithBy;
-record WithByOnRecord(String a, String b) {
+@WithBy record WithByOnRecord(String a, String b) {
/* Implicit */ private final String a;
/* Implicit */ private final String b;
- public WithByOnRecord( String a, String b) {
+ public WithByOnRecord(String a, String b) {
super();
.a = a;
.b = b;
@@ -10,4 +10,7 @@ record WithByOnRecord(String a, String b) {
public @java.lang.SuppressWarnings("all") WithByOnRecord withABy(final java.util.function.Function<? super String, ? extends String> transformer) {
return new WithByOnRecord(transformer.apply(this.a), this.b);
}
+ public @java.lang.SuppressWarnings("all") WithByOnRecord withBBy(final java.util.function.Function<? super String, ? extends String> transformer) {
+ return new WithByOnRecord(this.a, transformer.apply(this.b));
+ }
}