Ben Chuanlong Du's Blog

It is never too late to learn.

Parser Generators

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

pest

Pest is a general purpose parser written in Rust with a focus on accessibility, correctness, and performance. It uses parsing expression grammars (PEG) as input, which are similar in spirit …

Popular General Purpose Language Parsers

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

pest

pest is a general purpose parser written in Rust with a focus on accessibility, correctness, and performance. It uses parsing expression grammars (or PEG) as input, which are similar in …

Tips on ANTLR4

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Install ANTLR4 in Ubuntu

wajig install antlr4
sudo pip3 install antlr4-python3-runtime==4.5

References