1*16467b97STreehugger Robotgrammar t057autoAST44; 2*16467b97STreehugger Robotoptions {language=JavaScript;output=AST;} 3*16467b97STreehugger Robota returns [result] : ID b { 4*16467b97STreehugger Robot/* @todo */ 5*16467b97STreehugger Robot/* $result = $b.i.toString() + '\n'; */ 6*16467b97STreehugger Robot} ; 7*16467b97STreehugger Robotb returns [i] : INT {$i=parseInt($INT.text);} ; 8*16467b97STreehugger RobotID : 'a'..'z'+ ; 9*16467b97STreehugger RobotINT : '0'..'9'+; 10*16467b97STreehugger RobotWS : (' '|'\n') {$channel=HIDDEN;} ; 11