• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1grammar t056lexer8;
2options {language=JavaScript;}
3a : A EOF ;
4A : I {this.xlog($I.text);} ;
5fragment I : '0'..'9'+ ;
6WS : (' '|'\n') {$channel=HIDDEN;} ;
7