diff options
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r-- | test/transform/resource/after-ecj/GetterEnum.java | 21 | ||||
-rw-r--r-- | test/transform/resource/after-ecj/SneakyThrowsPlain.java | 10 |
2 files changed, 31 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/GetterEnum.java b/test/transform/resource/after-ecj/GetterEnum.java new file mode 100644 index 00000000..3536a6e8 --- /dev/null +++ b/test/transform/resource/after-ecj/GetterEnum.java @@ -0,0 +1,21 @@ +import lombok.AccessLevel; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +@RequiredArgsConstructor(access = AccessLevel.PRIVATE) enum GetterEnum { + ONE(1, "One"), + private final @Getter int id; + private final @Getter String name; + <clinit>() { + } + private @java.lang.SuppressWarnings("all") GetterEnum(final int id, final String name) { + super(); + this.id = id; + this.name = name; + } + public @java.lang.SuppressWarnings("all") int getId() { + return this.id; + } + public @java.lang.SuppressWarnings("all") String getName() { + return this.name; + } +}
\ No newline at end of file diff --git a/test/transform/resource/after-ecj/SneakyThrowsPlain.java b/test/transform/resource/after-ecj/SneakyThrowsPlain.java index 56016b5a..1b45dc5a 100644 --- a/test/transform/resource/after-ecj/SneakyThrowsPlain.java +++ b/test/transform/resource/after-ecj/SneakyThrowsPlain.java @@ -10,6 +10,16 @@ class SneakyThrowsPlain { throw lombok.Lombok.sneakyThrow($ex); } } + @lombok.SneakyThrows SneakyThrowsPlain(int x) { + this(); + try + { + System.out.println("constructor2"); + } + catch (final java.lang.Throwable $ex) { + throw lombok.Lombok.sneakyThrow($ex); + } + } public @lombok.SneakyThrows void test() { try { |