diff options
Diffstat (limited to 'test/transform/resource')
4 files changed, 22 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValWithLabel.java b/test/transform/resource/after-delombok/ValWithLabel.java new file mode 100644 index 00000000..82cd4ed7 --- /dev/null +++ b/test/transform/resource/after-delombok/ValWithLabel.java @@ -0,0 +1,9 @@ +public class ValWithLabel { + { + LABEL: for (final java.lang.String x : new String[0]) { + if (x.toLowerCase() == null) { + continue LABEL; + } + } + } +}
\ No newline at end of file diff --git a/test/transform/resource/after-ecj/ValWithLabel.java b/test/transform/resource/after-ecj/ValWithLabel.java new file mode 100644 index 00000000..cb06d3c1 --- /dev/null +++ b/test/transform/resource/after-ecj/ValWithLabel.java @@ -0,0 +1 @@ +//ignore
\ No newline at end of file diff --git a/test/transform/resource/after-eclipse/ValWithLabel.java b/test/transform/resource/after-eclipse/ValWithLabel.java new file mode 100644 index 00000000..cb06d3c1 --- /dev/null +++ b/test/transform/resource/after-eclipse/ValWithLabel.java @@ -0,0 +1 @@ +//ignore
\ No newline at end of file diff --git a/test/transform/resource/before/ValWithLabel.java b/test/transform/resource/before/ValWithLabel.java new file mode 100644 index 00000000..f7c3402a --- /dev/null +++ b/test/transform/resource/before/ValWithLabel.java @@ -0,0 +1,11 @@ +import lombok.val; + +public class ValWithLabel { + { + LABEL: for (val x : new String[0]) { + if (x.toLowerCase() == null) { + continue LABEL; + } + } + } +}
\ No newline at end of file |