Home | History | Annotate | Download | only in functional
      1 grammar t056lexer8;
      2 options {language=JavaScript;}
      3 a : A EOF ;
      4 A : I {this.xlog($I.text);} ;
      5 fragment I : '0'..'9'+ ;
      6 WS : (' '|'\n') {$channel=HIDDEN;} ;
      7