antlr/tool/playground/T.g4

13 lines
103 B
ANTLR

grammar T;
a
: 'b' #alt1
| 'c' #alt2
;
b : 'x' | 'y' {} ;
e : e '*' e
| 'foo'
;