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