What is ANTLR v4
devANTLR (ANother Tool for Language Recognition) is a powerful parser generator used for reading, processing, executing, or translating structured text or binary files.
From a grammar, ANTLR generates:
- A parser that builds parse trees.
- A listener interface (or visitor) that allows you to easily respond to the recognition of specific phrases within the grammar.