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