Home | History | Annotate | Download | only in functional
      1 grammar t056lexer10;
      2 options {language=JavaScript;}
      3 a : A ;
      4 A : i+=I WS i+=I {$channel=0; for (var p=0; p<$i.length; p++) this.xlog(" "+$i[p].getText()); } ;
      5 fragment I : '0'..'9'+ ;
      6 WS : (' '|'\n') {$channel=HIDDEN;} ;
      7