antlr-rust-runtime 0.16.0

High performance Rust runtime and target support for ANTLR v4 generated parsers
Documentation
1
2
3
4
5
6
7
parser grammar ParserIndirectLeftRecursion;

tokens { X }

a : b ;
b : c ;
c : a | X ;