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

8 lines
193 B
Plaintext
Executable File

grammar t058rewriteAST64;
options {language=JavaScript;output=AST;}
tokens {BLOCK;}
a : ID -> ID? ; // match an ID to optional ID
b : ID ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;