Home | History | Annotate | Download | only in functional
      1 grammar t056lexer1;
      2 options {language=JavaScript;}
      3 a : A {this.xlog(this.input);} ;
      4 A : '\\' 't' {this.setText("  ");} ;
      5 WS : (' '|'\n') {$channel=HIDDEN;} ;
      6