aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/runtime/JavaScript/tests/functional/t052importM1.g
blob: e170561fb409c2e1b120c3a89a70f3999794d35b (plain)
1
2
3
4
5
6
7
8
grammar t052importM1;
options {
    language=JavaScript;
}
import t052importS1;
s : a ;
B : 'b' ; // defines B from inherited token space
WS : (' '|'\n') {this.skip();} ;