1grammar t057autoAST22; 2options {language=JavaScript;output=AST;} 3s : a ; 4a : atom ('exp'^ a)? ; 5atom : INT ; 6ID : 'a'..'z'+ ; 7INT : '0'..'9'+; 8WS : (' '|'\n') {$channel=HIDDEN;} ; 9