t056lexer7.g revision 324c4644fee44b9898524c09511bd33c3f12e2df
1grammar t056lexer7;
2options {language=JavaScript;}
3a : A EOF ;
4A : 'hi' WS (v=I)? {$channel=0; this.xlog($v.text);} ;
5fragment I : '0'..'9'+ ;
6WS : (' '|'\n') {$channel=HIDDEN;} ;
7