aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-11-09Added lombok.Lombok.preventNullAnalysis to the null test in @Cleanup to suppressRoel 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-08reverted the deletion of SneakyThrowsDependencyInfo. It's still a runtime ↵Reinier Zwitserloot
dependency for delombok users.
2010-11-08Ran 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-08Added support for canEqual in ecjRoel Spilker
2010-11-08Merge branch 'master' of github.com:rzwitserloot/lombokReinier Zwitserloot
2010-11-08'val' with an array on the initializer didn't work in eclipse.Reinier Zwitserloot
2010-11-08Delombok 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-08Added support for canEquals in javacRoel Spilker
2010-11-08Little cleanupRoel Spilker
2010-11-07Merge branch 'eclipseReso'Reinier Zwitserloot
2010-11-07'val' support for eclipse.Reinier Zwitserloot
2010-11-07Solved 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-07Now generated nodes can also be detected in ecjRoel Spilker
2010-11-07Use the actual annotation value to process the @Log annotations instead of ↵Roel Spilker
their String representations.
2010-11-07Provide access to the actual annotation valuesRoel Spilker
2010-11-06Updated documentation on @Log and moved them all to lombok.extern.*Roel Spilker
2010-11-06Merge branch 'master' of github.com:rzwitserloot/lombokReinier Zwitserloot
2010-11-06implicit flags in interfaces (all methods become public abstract, etc) are ↵Reinier Zwitserloot
now no longer printed in delombok
2010-11-06Have j.u.l. be invoked with TargetType.class.getName() instead of "TargetType"Roel Spilker
2010-11-06Use a ClassLiteralAccess instead of a NameReferenceRoel Spilker
2010-11-06Create Clinit if you create a static field and it doesn't yet existRoel Spilker
2010-11-06Code cleanupRoel Spilker
2010-11-06Add support for multiple logging frameworks in EclipseRoel Spilker
2010-11-06Reorder parametersRoel Spilker
2010-11-06Use an annotation instead of implementations of interfacesRoel Spilker
2010-11-06Fixed typoRoel Spilker
2010-11-06Added support for Log4J, Commons and JUL in the javac handlerRoel Spilker
2010-11-03Intial support for @Log, for now only slf4jRoel Spilker
2010-11-03Merge branch 'master' of github.com:rzwitserloot/lombokReinier Zwitserloot
2010-11-03val in java, including tests and javac resolution utilities.Reinier Zwitserloot
2010-11-03big 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-03Some small framework updates to accomodate resolution.Reinier Zwitserloot
2010-11-02Issue 154: Add null-check to @CleanupRoel Spilker
2010-10-04The 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-01Fix 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-30bugfix for the sneakyThrows remover: In rare cases would erroneously delete ↵Reinier Zwitserloot
an ATHROW opcode.
2010-09-30trivial: javadoc fixes, renamed 'className' to 'fileName'for postprocessorReinier Zwitserloot
2010-08-15Documented the addition of the post-process stuff, which fixes issue 144.Reinier Zwitserloot
2010-08-15Documented the ClassFileMetaData utility.Reinier Zwitserloot
2010-08-15Merge branch 'postProcess'Reinier Zwitserloot
2010-08-15Added name of compilation unit to error/warnings generated by postProcess.Roel Spilker
2010-08-15Added error/warning to the printed messages.Roel Spilker
2010-08-14delombok added type parameters to constructors that mirror the type's own ↵Reinier Zwitserloot
type parameters. This resulted in delombok turning any generated constructor that takes at least 1 parameter of type 'T' into something that didn't compile, and to boot, a confusing error message. This is now fixed. Fixes issue #140.
2010-08-13The "// Generated by delombok at ...." line at the top of delombok-produced ↵Reinier Zwitserloot
source files now uses the system's local line-ending just like the rest of the source file, instead of posix/unix style LF. Reported by Anthony Whitfield, fixes issue #142.
2010-08-08Post-compilation works in both Eclipse and ecjRoel Spilker
2010-08-07Fixed some bugs in reading the constant pool and added testsRoel Spilker
2010-08-05Created utility class to casually inspect class files on the usage of ↵Roel Spilker
classes, fields and methods