blob: 5f243825314b98e6156586757ed89f1f37cf3ffa [file] [log] [blame]
grammar t056lexer2;
options {language=JavaScript;}
a : A EOF {this.xlog(this.input);} ;
A : '-' I ;
I : '0'..'9'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;