diff options
author | Roel Spilker <r.spilker@gmail.com> | 2014-05-08 01:14:06 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2014-05-08 01:14:06 +0200 |
commit | 22c5e0daaf6b56c85a59027a890efe9ed3e217e8 (patch) | |
tree | d45af675c906710ee8b125947bb14ea420abfe35 /test/transform/resource/before | |
parent | 8bfed5d51c274dccab23bda58440d63ba852f219 (diff) | |
download | lombok-22c5e0daaf6b56c85a59027a890efe9ed3e217e8.tar.gz lombok-22c5e0daaf6b56c85a59027a890efe9ed3e217e8.tar.bz2 lombok-22c5e0daaf6b56c85a59027a890efe9ed3e217e8.zip |
[java8] Added tests for using java language features in transformations.
Diffstat (limited to 'test/transform/resource/before')
-rw-r--r-- | test/transform/resource/before/ValDefault.java | 9 | ||||
-rw-r--r-- | test/transform/resource/before/ValLambda.java | 20 |
2 files changed, 29 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValDefault.java b/test/transform/resource/before/ValDefault.java new file mode 100644 index 00000000..75124c3c --- /dev/null +++ b/test/transform/resource/before/ValDefault.java @@ -0,0 +1,9 @@ +// version 8: +interface ValDefault { + int size(); + + default void method() { + lombok.val x = 1; + lombok.val size = size(); + } +}
\ No newline at end of file diff --git a/test/transform/resource/before/ValLambda.java b/test/transform/resource/before/ValLambda.java new file mode 100644 index 00000000..ed843ed7 --- /dev/null +++ b/test/transform/resource/before/ValLambda.java @@ -0,0 +1,20 @@ +// version 8: +class ValLambda { + public void easyLambda() { + lombok.val foo = (Runnable)()-> {}; + } + + public void easyIntersectionLambda() { + lombok.val foo = (Runnable & java.io.Serializable)()-> {}; + lombok.val bar = (java.io.Serializable & Runnable)()-> {}; + } + + public void easyLubLambda() { + lombok.val foo = (System.currentTimeMillis() > 0) ? (Runnable)()-> {} : (Runnable)System.out::println; + } + +// public void castLubLambda() { +// Runnable foo = (Runnable)((System.currentTimeMillis() > 0) ? ()-> {} : System.out::println); +// lombok.val foo = (Runnable)((System.currentTimeMillis() > 0) ? ()-> {} : System.out::println); +// } +} |