Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-08 | Fixed value's snippet integration (it hadn't been updated yet now that Value ↵ | Reinier Zwitserloot | |
has moved from experimental into core). | |||
2013-07-08 | gave up on adding support for moving javadoc to getter/setter in eclipse. ↵ | Reinier Zwitserloot | |
Eclipse breaks the javadoc out of the raw source and we can't modify that without breaking a billion things. To solve this issue we'd have to write some very complicated patches to intercept this process and somehow propagate the node that the javadoc is attached to AND translate from the ast model to dom or whatever is being used there. Not gonna happen for this low priority feature. | |||
2013-07-08 | added tests for new javadoc behaviour, javac implementation of copying ↵ | Reinier Zwitserloot | |
javadoc for getters/setters, and fixed pretty printer to no longer inject an extra newline at the top of javadoc. | |||
2013-07-08 | Support for javadoc copying in Getter/Setter generation for javac, as well ↵ | Reinier Zwitserloot | |
as updates to all relevant documentation | |||
2013-07-08 | A lot of refactoring on how javadoc is handled, to prepare for copying ↵ | Reinier Zwitserloot | |
javadoc from field to setter/getter in javac. | |||
2013-07-07 | more work on the tricky Context hack to make 'ant compile' not emit warnings. | Reinier Zwitserloot | |
2013-07-07 | updated docs for new desugaring for getter(lazy=true) | Reinier Zwitserloot | |
2013-07-07 | eclipse support for the new @Getter(lazy=true) desugaring. | Reinier Zwitserloot | |
2013-07-07 | @Getter(lazy=true) now uses a different, more efficient desugaring. ↵ | Reinier Zwitserloot | |
Implementing in javac, ecj still has to be done. | |||
2013-07-07 | lombok's compile target is 1.6, but, eclipse project was generated as 1.7. ↵ | Reinier Zwitserloot | |
This caused a bunch of weirdness because eclipse changes a bunch of warnings and quickfixes based on this (such as complaining about lack of @SafeVarargs, a 1.7-only feature). | |||
2013-07-07 | FINALLY! Found the cause of a really weird eclipse bug, | Reinier Zwitserloot | |
where _ANY_ mention of com.sun.tools.javac.tree.TreeMaker, anywhere in a source file, would disable pretty much every intelligent part of what makes the 'I' in IDE in eclipse: No auto-complete, no 'go to declaration', etcetera, but only since Eclipse Juno (not fixed in Kepler either). It's the presence of src/stubs/com/sun/tools/javac/util/Context.java. I've moved Context to a special stubs directory that's only used for javac (so that we still get the benefit of getting some warnings and such when making command line builds), and removed the @Override annotations for where the stubbing is relevant (for methods that exist in javac7 but not in javac6 on interfaces we create implementations of). Furthermore, I did some extremely tricky work in making our version actuall compatible with the exact class signatures of both javac6- and javac7+'s versions; generation of synthetic methods for reified type parameters was causing havoc. A big stack of 'here be voodoo' comments unfortunately added to explain it all; necessary evil. | |||
2013-07-07 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2013-06-28 | Merge pull request #37 from maddingo/master | Reinier Zwitserloot | |
The installer creates proper "full paths" on Windows | |||
2013-06-28 | allow installer to be started with lombok.installer.fullpath, that creates ↵ | Martin Goldhahn | |
proper paths on Windows | |||
2013-06-25 | deprecating the old Value annotation also added deprecation warnings to ↵ | Reinier Zwitserloot | |
where we still support it as an alias. fixed. | |||
2013-06-25 | And now the changelogs are also updated to reflect that Value has been ↵ | Reinier Zwitserloot | |
promoted. Racking up the commits here... | |||
2013-06-25 | and added some more javadoc to point at the new main package variant | Reinier Zwitserloot | |
2013-06-25 | ... and now that @Value has been promoted to the main package, the old ↵ | Reinier Zwitserloot | |
experimental one is now deprecated. | |||
2013-06-25 | Value has been promoted to the main package. | Reinier Zwitserloot | |
2013-06-18 | javac builder implementation. Passes all tests. | Reinier Zwitserloot | |
Added toString() impl for builders in both eclipse and javac. Added all documentation, though it'll need some reviewing. | |||
2013-06-18 | finished tests for builder (added after-delombok versions). | Reinier Zwitserloot | |
2013-06-18 | Added a ClassDef wrapper, because its signature changed between javac1.6 and ↵ | Reinier Zwitserloot | |
javac1.7. (The wrapper uses reflection). Need for: javac @Builder impl. Also added some utilities to JavacHandlerUtil. | |||
2013-06-16 | Most of the javac implementation for HandleBuilder, plus | Reinier Zwitserloot | |
some minor updates and refactoring in the eclipse HandleBuilder. | |||
2013-06-16 | improved and added to test cases for @Builder. | Reinier Zwitserloot | |
Eclipse's implementation continues to pass them all. | |||
2013-06-16 | Eclipse Builder implementation finished. Tests need fleshing out though. | Reinier Zwitserloot | |
2013-06-16 | First steps Builder support | Reinier Zwitserloot | |
2013-06-16 | Added injectType methods to Eclipse/JavacHandlerUtil, which we'll need to ↵ | Reinier Zwitserloot | |
inject the created $Builder type. Inspired by Philipp Eichhorn's work in lombok-pg. | |||
2013-06-16 | Removed a SuppressWarnings which old eclipse doesn't care about for some ↵ | Reinier Zwitserloot | |
reason... now I'm just confused. Do we need it or not? | |||
2013-06-16 | issue 536: annotationprocessor now always returns false. | Reinier Zwitserloot | |
2013-06-13 | Added some very limited reporting when OutOfMemorErrors occur during | Reinier Zwitserloot | |
parse tree builder under javac. Let's hope our users reporting these issues can use this to figure out which files are triggering the issue. | |||
2013-05-31 | Added @NonNull on parameters feature (issue 514), | Reinier Zwitserloot | |
including docs and changelog. | |||
2013-05-30 | Fixes for issue 470: VerifyErrors when using @SneakyThrows. | Reinier Zwitserloot | |
2013-05-24 | added test case and delombok result for issue 520 (val in ↵ | Reinier Zwitserloot | |
try-with-resources). WARNING: I havent added ecj test output yet because so far there is no ecj7 available for testing with our buildscripts. I should fix that first and then Ill sort this out. | |||
2013-05-24 | whoops, didnt update version number to 0.11.9 yet | Reinier Zwitserloot | |
2013-05-24 | added previous fix of issue 520 to the changelog | Reinier Zwitserloot | |
2013-05-24 | Fixed more issues related to java7's try-with-resources, | Reinier Zwitserloot | |
and updated ECJ version detection. | |||
2013-05-23 | Added methods to obtain JLS support-level version information from ↵ | Reinier Zwitserloot | |
AST/LombokNode. Tests updates to honour these with //version X at the top of any test file (now also in eclipse, which until now always said it was v6) | |||
2013-05-23 | Added a method to obtain latest java language spec supported by host | Reinier Zwitserloot | |
platform and implemented it for javac BUT NOT FOR ECJ! | |||
2013-05-23 | Updated website; the footer of the video was too long and caused wonky ↵ | Reinier Zwitserloot | |
formatting, and the download page now points to the IntelliJ plugin page instead of saying that IntelliJ doesn't support lombok. | |||
2013-05-06 | Fixed issue 513: If equals is present but hashCode isn't, @Data now ↵ | Reinier Zwitserloot | |
generates a warning to explain this strange situation. | |||
2013-04-23 | bugfix in website ant buildscript for finding the Java2HtmlTask | Reinier Zwitserloot | |
2013-04-23 | prerelease version bump | Reinier Zwitserloot | |
2013-04-23 | added temporary debug switch -Dlombok.debugAsmOnly for issue 470. | Reinier Zwitserloot | |
2013-04-23 | added support for lombok.disablePostCompiler. | Reinier Zwitserloot | |
2013-04-23 | fixed capitalization error in an inner class. | Reinier Zwitserloot | |
2013-04-23 | added link to a great external non-video based tutorial instead of our ↵ | Reinier Zwitserloot | |
crappy way too old slideshow thingie. | |||
2013-04-05 | Update to newer version of ivyplusplus | Reinier Zwitserloot | |
2013-04-02 | long overdue update of copyright year in license file | Roel Spilker | |
2013-03-26 | updated changelog to reflect performance improvements of previous commit. | Roel Spilker | |
2013-03-26 | Massive performance improvements, and a few potentially breaking changes for ↵ | Roel Spilker | |
other lombok plugin developers. |