How can i see the live parse tree using Antlr4 Ide in Eclipse?

て烟熏妆下的殇ゞ 提交于 2019-12-05 00:45:38

Currently there is no provision for viewing live parse tree in ANTLR 4 IDE for Eclipse.

Meanwhile, you can see the parse tree using -gui switch in the command line. It also provides a feature of saving the parse tree as PNG.

After installing Antlr4Ide plugin in Eclipse:

  • Window>Show View>Other, Antlr4>Parse tree
  • Activate g4 file
  • Click parsing rule in g4 file, Parse tree now shows active rule above source editor box

In the parse tree view you see a live source editor on the left, with syntax highlighting for your language. When you enter code in your language there, the tree will update on the right. The antlr console shows parsing errors at the same time.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!