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