antlr

Parser generator for reading, processing, and translating structured text

brewmacoslinux
Try with needOr install directly
Source

About

ANother Tool for Language Recognition

Commands

antlr4antlr

Examples

Generate a Java lexer and parser from a grammar file$ antlr4 -Dlanguage=Java MyGrammar.g4
Generate a Python parser from a grammar file$ antlr4 -Dlanguage=Python3 MyGrammar.g4
Generate code with visitor pattern support$ antlr4 -visitor -no-listener MyGrammar.g4