xref: /aosp_15_r20/external/antlr/runtime/JavaScript/tests/functional/t056lexer1.g (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1grammar t056lexer1;
2options {language=JavaScript;}
3a : A {this.xlog(this.input);} ;
4A : '\\' 't' {this.setText("  ");} ;
5WS : (' '|'\n') {$channel=HIDDEN;} ;
6