igordejanovic / parglare

A pure Python LR/GLR parser - http://www.igordejanovic.net/parglare/
MIT License
135 stars 32 forks source link

Parse tree visualization #106

Closed KOLANICH closed 3 years ago

KOLANICH commented 4 years ago

Description

I guess pglr lacks a command to visualize a parse tree, like java -cp antlr-4.8-complete.jar:. org.antlr.v4.gui.TestRig <grammar> <top rule> -gui ./test.txt of ANTLR.

igordejanovic commented 3 years ago

This is now available in 0.14.0 in pglr parse command.

KOLANICH commented 3 years ago

Thank you.