What are the steps to use ANTLR to create an abstract syntax tree of Java source code and then walk the tree?
-
I have successfully installed antlr and the java.g4 grammar. Now, I want to take a java source code file as an input and create a AST and then walk it (in netbeans). How do I do this?
-
Answer:
Unlike ANTLR3, version 4 generates parse tree (AST) by default. JavaLexer lexer = new JavaLexer(input); CommonTokenStream tokens = new CommonTokenStream(lexer); JavaParser parser = new JavaParser(tokens); ParserRuleContext<Token> tree = parser.compilationUnit(); // parse ParseTreeWalker walker = new ParseTreeWalker(); // create standard walker MyListener extractor = new MyListener(parser); walker.walk(extractor, tree); // initiate walk of tree with listener Check https://theantlrguy.atlassian.net/wiki/display/ANTLR4/Parse+Tree+Listeners. Also, see https://github.com/antlrjavaparser/antlr-java-parser (ANTLR4 Java code parser). Hope this helps :)
Saroja Parameswaran at Quora Visit the source
Related Q & A:
- How to find the embed code for videos on a Website when it doesn't show in the source code?Best solution by Stack Overflow
- What are the steps that our drinking water follows as it flows through a water treatment facility?Best solution by Yahoo! Answers
- What are the steps of becoming a Medical Doctor after High School?Best solution by Yahoo! Answers
- Where to find 'the art and Science of C' source code?Best solution by Stack Overflow
- Where to get ubuntu source code?Best solution by wiki.answers.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.