aboutsummaryrefslogtreecommitdiff
path: root/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java
AgeCommit message (Collapse)Author
2009-11-25Refactored the source folders.Reinier Zwitserloot
2009-11-25Fixing ticket #68 ... again!Reinier Zwitserloot
2009-10-18Configured warnings and solved some.unknown
2009-10-11Integrated lombok.jar and lombok.eclipse.agent.jar into one jar that ↵Reinier Zwitserloot
installs, is a javac apt processor, and an agent, all at once.
2009-10-10Renaming an inner type, or a type in a linked file, still failed. Now it works.Roel Spilker
2009-10-09Also prevented generated nodes from being removed from ASTRewriter.Reinier Zwitserloot
2009-10-09After a 4 hour crazy search, we found it! Rename Compilation Unit refactor ↵Reinier Zwitserloot
script now works fine, even if your class has a @Data annotation.
2009-10-08The lombok.patcher project renamed one of the builder methods to a better name.Reinier Zwitserloot
2009-10-08organized the various patch scripts into separate methods that have sensible ↵Reinier Zwitserloot
names - that method was getting awfully long.
2009-10-07Fixed one of our patch scripts that presumed any convert() method with 1 ↵Reinier Zwitserloot
parameter was always receiving an ASTNode child. One of the methods actually gets an array of those, which isn't of course a subclass of ASTNode itself.
2009-10-07Fully moved to using the lombok.patcher project. Means our dependency on ASM ↵Reinier Zwitserloot
is no longer needed (our dep on lombok-patcher takes care of it), and the old EclipseTransformer system has been removed.
2009-09-29bugfix in name of class to patch.Reinier Zwitserloot
2009-09-29Everything seems to be working smoothly! Perhaps time to make this the main ↵Reinier Zwitserloot
branch...
2009-09-26Rewrite of the eclipse agent to use the new lombok.patcher project.Reinier Zwitserloot
2009-09-23BIIG change to the eclipse agent: Now all patcher classes represent ↵Reinier Zwitserloot
themselves via SPI. LinkedNOdeFinderTransformer is broken.
2009-09-01Added a simple rewriter to the catch block finder of ASTConverter: If it ↵Reinier Zwitserloot
can't find it, it used to return -1, which is exceedingly useless and causes no end of bugs. Changed it to returning the start point of the search, which is a more useful fallback.
2009-07-05More documentation.Reinier Zwitserloot
2009-07-05[TRIVIAL]Reinier Zwitserloot
2009-06-28Removed a debug print.Reinier Zwitserloot
2009-06-28Preparating 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-19Finding lombok.jar would fail if you had any spaces in the path. Fixed that.Reinier Zwitserloot
2009-06-19Live reloading of the eclipse parser classes is technically supported by the ↵Reinier Zwitserloot
agent though I never tested it. I found a bug while browsing this code. fixed it.
2009-06-19Renamed EclipseParserPatcher to EclipsePatcher, as it patches not just the ↵Reinier Zwitserloot
parser, but also the CompilationUnitDeclaration class so we can store our AST in it for caching purposes.
2009-06-19List of stuff we still need to do as well as research notes on how to get there.Reinier Zwitserloot