1*16467b97STreehugger Robotgrammar t056lexer3; 2*16467b97STreehugger Robotoptions {language=JavaScript;} 3*16467b97STreehugger Robota : A EOF {this.xlog($A.text+", channel="+$A.channel);} ; 4*16467b97STreehugger RobotA : '-' WS I ; 5*16467b97STreehugger RobotI : '0'..'9'+ ; 6*16467b97STreehugger RobotWS : (' '|'\n') {$channel=HIDDEN;} ; 7