aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/runtime/JavaScript/tests/functional/t052importM8.g
blob: cdfa00aa24fd63f8d89349e8166b97aba1392078 (plain)
1
2
3
4
5
6
7
lexer grammar t052importM8;
options {
    language=JavaScript;
}
import t052importS8;
A : 'a' {this.capture("M.A ");} ;
WS : (' '|'\n') {this.skip();} ;