blob: 40935394261ce0588e702433a980f4a30f06749e [file] [log] [blame]
grammar t058rewriteAST17;
options {language=JavaScript;output=AST;}
a : b -> b?;
b : ID ;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;