Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-28 | Preparating for java 1.5-ification. All stuff that isn't specific to javac ↵ | Reinier Zwitserloot | |
should run in java 1.5, so that an eclipse started on a 1.5 JVM will still run lombok. | |||
2009-06-27 | [TRIVIAL] Added a toString to AnnotationValue, used to debug something, but ↵ | Reinier Zwitserloot | |
useful enough to leave in there. | |||
2009-06-27 | Added a caching mechanism to AnnotationValues, for instantiating the annotation. | Reinier Zwitserloot | |
2009-06-21 | Bug fix: using string literals in any lombok annotation value would blow up ↵ | Reinier Zwitserloot | |
that processor. | |||
2009-06-17 | Removed a debug print. | Reinier Zwitserloot | |
2009-06-17 | Massive refactors. This list isn't complete, but should give you an idea: | Reinier Zwitserloot | |
A) many things in lombok.eclipse moved to lombok.core to enable reuse with lombok.javac. B) lombok.javac works now similarly to eclipse's model: We first make big ASTs that are bidirectionally traversable, then we walk through that for annotations. C) Instead of getting an annotation instance, you now get an object that is more flexible and can e.g. give you class values in an enum as a string instead of a Class object, which may fail if that class isn't on the classpath of lombok. D) sources to the internal sun classes for javac added to /contrib. |