1 2grammar t058rewriteAST40; 3options {language=JavaScript;output=AST;} 4tokens {BLOCK;} 5a : (atom -> atom) (op='+' r=atom -> ^($op $a $r) )* ; 6atom : INT ; 7ID : 'a'..'z'+ ; 8INT : '0'..'9'+; 9WS : (' '|'\n') {$channel=HIDDEN;} ;