1*16467b97STreehugger Robotgrammar t057autoAST19; 2*16467b97STreehugger Robotoptions {language=JavaScript;output=AST;} 3*16467b97STreehugger Robota : x+=type^ ID ; 4*16467b97STreehugger Robottype : {pass}'int' | 'float' ; 5*16467b97STreehugger RobotID : 'a'..'z'+ ; 6*16467b97STreehugger RobotINT : '0'..'9'+; 7*16467b97STreehugger RobotWS : (' '|'\n') {$channel=HIDDEN;} ; 8