diff options
author | Bulgakov Alexander <abulgakov@at-consulting.ru> | 2016-09-22 14:48:41 +0300 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2016-10-17 22:32:21 +0200 |
commit | 0f0cb68eac20c6f02b77c1fade88cdad8b7d85a2 (patch) | |
tree | b65bf412b5b17b2852ba5d21a11c9556a3435315 /test/transform | |
parent | 444d77faa2836c7adf31fab0c8f601b4058d4130 (diff) | |
download | lombok-0f0cb68eac20c6f02b77c1fade88cdad8b7d85a2.tar.gz lombok-0f0cb68eac20c6f02b77c1fade88cdad8b7d85a2.tar.bz2 lombok-0f0cb68eac20c6f02b77c1fade88cdad8b7d85a2.zip |
added supporting for @val variables inside lambdas.
Diffstat (limited to 'test/transform')
-rw-r--r-- | test/transform/resource/after-delombok/ValFinal.java | 5 | ||||
-rw-r--r-- | test/transform/resource/after-delombok/ValInLambda.java | 18 | ||||
-rw-r--r-- | test/transform/resource/after-ecj/ValFinal.java | 9 | ||||
-rw-r--r-- | test/transform/resource/after-ecj/ValInLambda.java | 21 | ||||
-rw-r--r-- | test/transform/resource/before/ValFinal.java | 6 | ||||
-rw-r--r-- | test/transform/resource/before/ValInLambda.java | 21 |
6 files changed, 80 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValFinal.java b/test/transform/resource/after-delombok/ValFinal.java new file mode 100644 index 00000000..d35ca713 --- /dev/null +++ b/test/transform/resource/after-delombok/ValFinal.java @@ -0,0 +1,5 @@ +public class ValFinal { + public void test() { + final int x = 10; + } +}
\ No newline at end of file diff --git a/test/transform/resource/after-delombok/ValInLambda.java b/test/transform/resource/after-delombok/ValInLambda.java new file mode 100644 index 00000000..7ce1e1b4 --- /dev/null +++ b/test/transform/resource/after-delombok/ValInLambda.java @@ -0,0 +1,18 @@ +// version 8: +class ValInLambda { + Runnable foo = (Runnable) () -> { + final int i = 1; + }; + + public void easyLambda() { + Runnable foo = (Runnable) () -> { + final int i = 1; + }; + } + + public void easyIntersectionLambda() { + Runnable foo = (Runnable) () -> { + final int i = 1; + }; + } +} diff --git a/test/transform/resource/after-ecj/ValFinal.java b/test/transform/resource/after-ecj/ValFinal.java new file mode 100644 index 00000000..d7cf9cb7 --- /dev/null +++ b/test/transform/resource/after-ecj/ValFinal.java @@ -0,0 +1,9 @@ +import lombok.val; +public class ValFinal { + public ValFinal() { + super(); + } + public void test() { + final @val int x = 10; + } +} diff --git a/test/transform/resource/after-ecj/ValInLambda.java b/test/transform/resource/after-ecj/ValInLambda.java new file mode 100644 index 00000000..7669789b --- /dev/null +++ b/test/transform/resource/after-ecj/ValInLambda.java @@ -0,0 +1,21 @@ +// version 8: + +import lombok.val; +class ValInLambda { + Runnable foo = (Runnable) () -> { + final @val int i = 1; +}; + ValInLambda() { + super(); + } + public void easyLambda() { + Runnable foo = (Runnable) () -> { + final @val int i = 1; +}; + } + public void easyIntersectionLambda() { + Runnable foo = (Runnable) () -> { + final @val int i = 1; +}; + } +} diff --git a/test/transform/resource/before/ValFinal.java b/test/transform/resource/before/ValFinal.java new file mode 100644 index 00000000..3c5af366 --- /dev/null +++ b/test/transform/resource/before/ValFinal.java @@ -0,0 +1,6 @@ +import lombok.val; +public class ValFinal { + public void test() { + final val x = 10; + } +}
\ No newline at end of file diff --git a/test/transform/resource/before/ValInLambda.java b/test/transform/resource/before/ValInLambda.java new file mode 100644 index 00000000..2c2a5942 --- /dev/null +++ b/test/transform/resource/before/ValInLambda.java @@ -0,0 +1,21 @@ +// version 8: + +import lombok.val; + +class ValInLambda { + Runnable foo = (Runnable) () -> { + val i = 1; + }; + + public void easyLambda() { + Runnable foo = (Runnable) () -> { + val i = 1; + }; + } + + public void easyIntersectionLambda() { + Runnable foo = (Runnable) () -> { + val i = 1; + }; + } +} |