1 2grammar t058rewriteAST42; 3options {language=JavaScript;output=AST;} 4a : type ID (',' ID)* ';' -> ^(type ID)+ ; 5type : 'int' ; 6ID : 'a'..'z'+ ; 7WS : (' '|'\n') {$channel=HIDDEN;} ;