blob: 1578e2c218d635f98e6ca2a8887762c63abbacf9 [file] [log] [blame]
grammar t056lexer1;
options {language=JavaScript;}
a : A {this.xlog(this.input);} ;
A : '\\' 't' {this.setText(" ");} ;
WS : (' '|'\n') {$channel=HIDDEN;} ;