aosp12/external/antlr/runtime/Python/tests/t032subrulePredict.g

9 lines
112 B
Plaintext

grammar t032subrulePredict;
options {
language = Python;
}
a: 'BEGIN' b WS+ 'END';
b: ( WS+ 'A' )+;
WS: ' ';