blob: 9980f6299385ab923f2786410a9723c27fd0a03a [file] [log] [blame]
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;} ;