xref: /aosp_15_r20/external/antlr/runtime/JavaScript/tests/functional/t057autoAST43.g (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1grammar t057autoAST43;
2options {language=JavaScript;output=AST;}
3a : A b=B b=B c+=C c+=C D {s = $D.text} ;
4A : 'a' ;
5B : 'b' ;
6C : 'c' ;
7D : 'd' ;
8WS : (' '|'\n') {$channel=HIDDEN;} ;
9