android13/external/antlr/runtime/JavaScript/tests/functional/t058rewriteAST61.g

8 lines
174 B
Plaintext
Executable File

grammar t058rewriteAST61;
options {language=JavaScript;output=AST;}
tokens {BLOCK;}
a : x=ID (y=b)? -> $x $y?;
b : ID ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;