Is it possible to access the Abstract Syntax Tree(AST) inside the javac.exe programmatically? Could you provide an example?
|
6
|
|
|
|
|
|
Yes, it is possible, but only since Java 6. Peter von der Ahé talks about the two JSRs in this interview. Of JSR 199:
JSR 269 is the annotation processing API. This article gives an excellent overview of accessing the Compiler Tree API. The section "Accessing the Abstract Syntax Tree: The Compiler Tree API" seems particularly suitable for your question. Depending on what you're doing, you may also want to look at the Jackpot Rule Language, which is a standalone refactoring engine that plugins into the Compiler Tree. |
||
|
|
|
|
Compile and run this with
It compiles and runs for me, though I have not played with the trees stuff myself, so you'll have to read the javadoc yourself. :-) Good luck! |
||
|
|
|
|
If you want to rewrite the AST from within javac, take a look at this hack where an annotation processor is used to rewrite code. Limitation being that it works with Sun's javac only. |
||
|
|
