Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-10 | Delombok has been fixed to work more like a true javac run now. As a result, ↵ | Reinier Zwitserloot | |
its now compatible with resolution again (i.e. resolution based transformers are applied correctly when delomboking). | |||
2010-11-10 | Fix for javac: 'val x = null;' is now valid, and results in x being of type ↵ | Reinier Zwitserloot | |
Object. | |||
2010-11-10 | 'val' now fully works on javac, even when referring to lombok-generated ↵ | Reinier Zwitserloot | |
code, by (ab)using the annotation processor's round system. This breaks delombok though. That'll have to be fixed next. | |||
2010-11-10 | deleted netbeans agent. With the new resolution features it'll never work, ↵ | Reinier Zwitserloot | |
and netbeans has supported lombok as a plain annotation processor for quite a while now. | |||
2010-11-10 | Undone something that'll never work anyway | Reinier Zwitserloot | |
2010-11-09 | EqualsAndHashCode no longer worked right when working on a class with 0 ↵ | Reinier Zwitserloot | |
fileds. Fixed. Thanks to Philipp Eichhorn for spotting this problem! | |||
2010-11-09 | Merge branch 'master' into javaChickenAndEgg | Reinier Zwitserloot | |
Conflicts: src/core/lombok/javac/handlers/HandleCleanup.java | |||
2010-11-09 | Experiment to try and make java 'self referential' by deleting the Enter and ↵ | Reinier Zwitserloot | |
MemberEnter state. So far it doesn't work yet. | |||
2010-11-09 | Delegate annotation | Reinier Zwitserloot | |
2010-11-09 | Added lombok.Lombok.preventNullAnalysis to the null test in @Cleanup to suppress | Roel Spilker | |
warnings about variables that cannot be null | |||
2010-11-09 | 'val' didn't work on ecj/eclipse when referring to types in the default ↵ | Reinier Zwitserloot | |
package. fixed. | |||
2010-11-08 | reverted the deletion of SneakyThrowsDependencyInfo. It's still a runtime ↵ | Reinier Zwitserloot | |
dependency for delombok users. | |||
2010-11-08 | Ran into a one-off, non-repeatable problem involving arguments not binding ↵ | Reinier Zwitserloot | |
correctly. Just in case its our fault, added some extra code to not even attempt any 'val' shenanigans in method arguments (which are LocalDeclaration subclasses). | |||
2010-11-08 | 'val' now also works in foreach loops, on both javac and ecj / eclipse. | Reinier Zwitserloot | |
2010-11-08 | Added support for canEqual in ecj | Roel Spilker | |
2010-11-08 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2010-11-08 | 'val' with an array on the initializer didn't work in eclipse. | Reinier Zwitserloot | |
2010-11-08 | Delombok on files with only 'val' in them, without --force, didn't do ↵ | Reinier Zwitserloot | |
anything. Fixed. | |||
2010-11-08 | 'val' in javac now errors out with an appropriate message on val x = { .. }, ↵ | Reinier Zwitserloot | |
and arrays no longer cause "Symbol not found: Array" errors. | |||
2010-11-08 | Added support for canEquals in javac | Roel Spilker | |
2010-11-08 | Little cleanup | Roel Spilker | |
2010-11-07 | Merge branch 'eclipseReso' | Reinier Zwitserloot | |
2010-11-07 | 'val' support for eclipse. | Reinier Zwitserloot | |
2010-11-07 | Solved issue 155: "Eclipse constructor generation not in class body" ↵ | Roel Spilker | |
http://code.google.com/p/projectlombok/issues/detail?id=155 Now all lombok generated methods are located before any other method. | |||
2010-11-07 | Now generated nodes can also be detected in ecj | Roel Spilker | |
2010-11-07 | Use the actual annotation value to process the @Log annotations instead of ↵ | Roel Spilker | |
their String representations. | |||
2010-11-07 | Provide access to the actual annotation values | Roel Spilker | |
2010-11-06 | Updated documentation on @Log and moved them all to lombok.extern.* | Roel Spilker | |
2010-11-06 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2010-11-06 | implicit flags in interfaces (all methods become public abstract, etc) are ↵ | Reinier Zwitserloot | |
now no longer printed in delombok | |||
2010-11-06 | Have j.u.l. be invoked with TargetType.class.getName() instead of "TargetType" | Roel Spilker | |
2010-11-06 | Use a ClassLiteralAccess instead of a NameReference | Roel Spilker | |
2010-11-06 | Create Clinit if you create a static field and it doesn't yet exist | Roel Spilker | |
2010-11-06 | Code cleanup | Roel Spilker | |
2010-11-06 | Add support for multiple logging frameworks in Eclipse | Roel Spilker | |
2010-11-06 | Reorder parameters | Roel Spilker | |
2010-11-06 | Use an annotation instead of implementations of interfaces | Roel Spilker | |
2010-11-06 | Fixed typo | Roel Spilker | |
2010-11-06 | Added support for Log4J, Commons and JUL in the javac handler | Roel Spilker | |
2010-11-03 | Intial support for @Log, for now only slf4j | Roel Spilker | |
2010-11-03 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2010-11-03 | val in java, including tests and javac resolution utilities. | Reinier Zwitserloot | |
2010-11-03 | big changes to delombok to prep for resolution, when sourcepath and ↵ | Reinier Zwitserloot | |
classpath are relevant, and the flow needs to be parse all, then enter all, then transform all, instead of parse->enter->transform sequentially for each file in isolation. | |||
2010-11-03 | Some small framework updates to accomodate resolution. | Reinier Zwitserloot | |
2010-11-02 | Issue 154: Add null-check to @Cleanup | Roel Spilker | |
2010-10-04 | The previous commit (fix for ZIP closed errors) actually breaks lombok on ↵ | Reinier Zwitserloot | |
systems with a javac that _does not_ close the annotation processor's jar. Fixed that, too. | |||
2010-10-01 | Fix for "ZIP file closed" errors caused by the postprocessor trying to load ↵ | Reinier Zwitserloot | |
more lombok classes to do its job, after javac has already closed the classloader via a hack. We hack the hack to stop javac from closing only _our_ (that is, lombok.jar's) classloader. Co-Author: Roel | |||
2010-09-30 | bugfix for the sneakyThrows remover: In rare cases would erroneously delete ↵ | Reinier Zwitserloot | |
an ATHROW opcode. | |||
2010-09-30 | trivial: javadoc fixes, renamed 'className' to 'fileName'for postprocessor | Reinier Zwitserloot | |
2010-08-15 | Documented the addition of the post-process stuff, which fixes issue 144. | Reinier Zwitserloot | |