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