forked from jasder/antlr
9 lines
76 B
Plaintext
9 lines
76 B
Plaintext
|
grammar T;
|
||
|
|
||
|
a
|
||
|
: 'b' #alt1
|
||
|
| 'c' #alt2
|
||
|
;
|
||
|
|
||
|
b : 'x' | 'y' {} ;
|