aboutsummaryrefslogtreecommitdiff
path: root/runtime/JavaScript/tests/functional/t056lexer6.g
blob: 249bdd14c924a18420931bdd2f5284fa947670fe (plain)
1
2
3
4
5
6
grammar t056lexer6;
options {language=JavaScript;}
a : A EOF {this.xlog(this.input);} ;
A : I '.' I ;
fragment I : '0'..'9'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;