More test files, test files updated to be valid java, and ecj test now goes through the complete compile process. This means val and @Delegate testing is now enabled.

TODO: Update -eclipse tests.
This commit is contained in:
Reinier Zwitserloot
2012-02-14 16:39:48 +01:00
parent 5e9e16a6b9
commit 06581537f2
55 changed files with 691 additions and 132 deletions
@@ -1,16 +1,16 @@
import lombok.ToString;
@ToString class ToStringOuter {
final int x;
int x;
String name;
@ToString class ToStringInner {
final int y;
int y;
}
@ToString static class ToStringStaticInner {
final int y;
int y;
}
class ToStringMiddle {
@ToString class ToStringMoreInner {
final String name;
String name;
}
}
}