blob: 6f7581299194f8c014c4505c9c38ecdd4aa06756 [file] [log] [blame]
grammar t056lexer8;
options {language=JavaScript;}
a : A EOF ;
A : I {this.xlog($I.text);} ;
fragment I : '0'..'9'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;