aboutsummaryrefslogtreecommitdiff
path: root/.classpath
AgeCommit message (Collapse)Author
2009-12-02We need this org-openide-modules.jar too. No direct dependencies, but javac ↵Reinier Zwitserloot
needs some class in it to finish the compile.
2009-12-02netbeans agent now works!Reinier Zwitserloot
2009-11-30All basic elements of netbeans support are here except the actual agent part.Reinier Zwitserloot
2009-11-29work in progress.Reinier Zwitserloot
2009-11-27Whoops, eclipse dependency on com.zwitserloot.cmdreader wasn't set up correctly.Reinier Zwitserloot
2009-11-27Preliminary version of the delombok ant task.Reinier Zwitserloot
2009-11-27Added cmdreader dependency, as delombok uses it to have a nice command line.Reinier Zwitserloot
2009-11-27Added a class that is easier to use than the parser itself for delombok, as ↵Reinier Zwitserloot
well as code to process entire directories at a time. Also removed duplication from the testcases.
2009-11-27Thorough work on inserting comments in the proper place for delombok; should ↵Roel Spilker
now work fine with GWT native methods! NON-NLS-1 is still theoretically problematic, but that'll be a fix for another day. Also added ability to recognize that nothing has changed, which will copy the original file instead of reparsing it.
2009-11-26Major restructuring+adding testsRoel Spilker
2009-11-25Work in progress on delombok.Roel Spilker
2009-11-25Refactored the source folders.Reinier Zwitserloot
2009-10-18Roel applied the patches I sent in for fixes to spi to the official spi jar, ↵Reinier Zwitserloot
so the custom rolled version that used to be checked in (-pre) is no longer needed, we're now on the official spi-0.2.4.jar.
2009-10-16The old 'disableCheckedExceptions' branch wasn't a particularly nice ↵Reinier Zwitserloot
distribution/storage model of experimental features. For example, it was hopelessly out of date. Redesigned to a separate experimental directory, along with new build scripts, and rewrite it to the new lombok.patcher model. Unfortunately it doesn't actually work, just yet. Seems to do nothing at all.
2009-10-16Fixed issue #24 by refactoring the AST.Node class - taken it out, and in the ↵Reinier Zwitserloot
process fixed a lot of type annoyance by adding more generics. Also changed coding style from for/while/if/switch/catch/do ( expr ) {} to for (expr) {}, hence the changes _everywhere_.
2009-10-16Whoops - removed some unneccessary eclipse plugins but forgot to remove them ↵Reinier Zwitserloot
from the eclipse project classpath.
2009-10-10We need to patch some code in a new eclipse plugin, so, added it to the deps.Roel Spilker
2009-10-07build.xml was getting rather large, so its been split up into separate ↵Reinier Zwitserloot
scripts. The scripts have also gained the ability to build certain dependencies, such as lombok.patcher which is being worked on in tandem with this project, automatically. Also, the deps system has been changed slightly; the agents builds and the main lombok build now all work off of a single dependency directory. Also removed the website/publish script, as we haven't used github's project hosting for some time now.
2009-09-26Rewrite of the eclipse agent to use the new lombok.patcher project.Reinier Zwitserloot
2009-07-17Use tools.jarRoel Spilker
2009-06-16Implemented a lot of stuff for javac, but we ran into 2 major issues still ↵Reinier Zwitserloot
to be implemented: 1. The visit mode of a lombok handler (does not trigger off of annotations, instead sees every field, method, type, and statement), needs to be coded, 2. triggering off of annotations via APT's annotation handling system skips method-local classes. We'll need to recode this via an AST visitor like we need for issue #1 Other than that, triggering off of annotations works swimmingly!
2009-06-14Added support to generate errors, both on specific nodes in an AST ↵Reinier Zwitserloot
(generified code in HandlerLibrary for unintelligible annotation param values), and more severe general errors for eclipse's error log. Also unrolled the foreach loop on ServiceLoader, because any given .next() call can throw a ServiceLoaderError, which we now handle somewhat more nicely.
2009-06-12Found 2 bugs in spi. This fixes both of them. Also enabled the spi processor ↵Reinier Zwitserloot
in eclipse project.
2009-06-12Filled out the deps and lib system with separate dirs for the agent and ↵Reinier Zwitserloot
lombok proper, and moved spi into lombok's lib path.
2009-06-09Build system splits the jars in two.Reinier Zwitserloot
2009-06-09Many changes:Reinier Zwitserloot
- Split off the actual agent work into a separate src package in preparation for creating separate jars. Involved a lot of renaming - Renamed TransformCompilationUnitDeclaration to TransformEclipseAST, as this class will also be transforming e.g. MethodDeclaration objects. - Expanded the patching to also patch in transform calls when the parser fills in the Statement array for existing constructors, methods, and initializers. - Redesigned the ClassLoaderWorkaround class quite a bit. - Positioning should not work correctly ('jump to method' should jump to the getter annotation). (Apparently, Clinit objects are always fully parsed in the original run, so no need to patch anything there).
2009-06-08Initial commit. As a proof of concept, it already works in javac and eclipse!Reinier Zwitserloot