Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-12 | [refactor] Cleaned up static imports (always use *), and refactored out ↵ | Reinier Zwitserloot | |
getCtcInt calls into constants as defined in Javac. | |||
2012-08-06 | Added @Value and @FieldDefaults implementations for javac and ecj, the ↵ | Reinier Zwitserloot | |
annotations including @NonFinal and @PackagePrivate, and some refactors. No tests yet. | |||
2012-03-27 | Whoops, errors during release build. fixed it quickly! | Reinier Zwitserloot | |
2012-03-21 | Implementation of @Accessors. | Reinier Zwitserloot | |
2012-01-24 | Fix for issue 328: @Delegate on a field for which we also generate a getter ↵ | Roel Spilker | |
will use the getter for delegation | |||
2011-12-20 | Moved Asm utils out of utils and into core, because utils isn't supposed to ↵ | Reinier Zwitserloot | |
have an asm dependency and now due to lacking the jarjar treatment all sorts of VerifyError hell breaks loose if you put both lombok.jar and lombok-utils.jar of 0.10.6 in the classpath while compiling with javac. | |||
2011-12-12 | Renamed Comment to CommentInfo. | Reinier Zwitserloot | |
2011-11-21 | Made an API for creating a (oracle javac) JavaCompiler which tracks comments ↵ | Reinier Zwitserloot | |
on a per Compilation Unit basis. The old way involved making reflective calls and detecting whether you need the 1.6 or the 1.7 variant to do this. These shenanigans are now hidden behind a nice API (lombok.javac.CommentCatcher). | |||
2011-11-20 | Fix for issue 299: labels would break 'val' in javac. | Reinier Zwitserloot | |
2011-11-07 | Changed copyright notices | Roel Spilker | |
2011-11-01 | Fixed issue 284 now also for java7, introduced more stubbing | Roel Spilker | |
2011-10-31 | Fixed delombok making a mess of comments (issue 284) for javac 6. delombok ↵ | Roel Spilker | |
in java7 is now completely broken but we'll fix that next. | |||
2011-10-25 | Again made @NotNull have no special meaning. | Reinier Zwitserloot | |
See issues 43, 271, and 287. | |||
2011-10-24 | pretty big refactor; introduced a new source package which should be (and ↵ | Reinier Zwitserloot | |
is) separately compilable, i.e. has no deps on any of the others. This is preparation work for being able to access some of these from lombok.ast without creating a cyclic dependency nightmare. |