xref: /aosp_15_r20/external/antlr/runtime/Python/tests/t032subrulePredict.g (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1grammar t032subrulePredict;
2options {
3  language = Python;
4}
5
6a: 'BEGIN' b WS+ 'END';
7b: ( WS+ 'A' )+;
8WS: ' ';
9