blob: c1daec627c29e1982a3e11f099028fc1f1d5d053 [file] [log] [blame]
grammar t058rewriteAST43;
options {language=JavaScript;output=AST;}
a : modifier? type ID (',' ID)* ';' -> ^(type modifier? ID)+ ;
type : 'int' ;
modifier : 'public' ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;