blob: 089ca430a7c064dcb4f391dab8dc894fd7ce7163 [file] [log] [blame]
grammar t058rewriteAST48;
options {language=JavaScript;output=AST;}
tokens {BLOCK;}
a : x=b -> ^($x $x);
b : ID ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;