Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-27 | [IMPROVEMENT] | Reinier Zwitserloot | |
Eclipse will now also hold off on running @PrintAST handlers until the very end. Simple generators such as @Getter didn't need this, because PrintAST's handler will hold off until eclipse does a full parse, but when changing the innards of methods, you would likely not see what you did. Fixed that. Also, PrintAST has an option to, instead of diving into the ASTNodes of bodies (methods, initializers, etc), to just render the java code, to see if the AST creation/rewriting you've been doing looks like the java code you intended. | |||
2009-06-18 | Expanded the AST printers to support a target PrintStream, and expanded the ↵ | Reinier Zwitserloot | |
@PrintAST annotation to let you supply an optional filename. Useful particularly for IDEs, which don't usually have a viewable console. Also renamed the printers to just 'Printer', as they are already inner classes of a specifically named type (JavacASTVisitor & co). | |||
2009-06-17 | A useful annotation that prints the AST of any annotated element via the ↵ | Reinier Zwitserloot | |
XASTPrinters in each ASTVisitor interface. |