aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/runtime/JavaScript/tests/functional/t052importS2.g
blob: 58f9867c48608cee2feb4316753acf90b1dc51c8 (plain)
1
2
3
4
5
6
7
8
9
10
parser grammar t052importS2;
options {
    language=JavaScript;
}
@members {
    this.capture = function(t) {
        this.gt052importM2.capture(t);
    }
}
a[x] returns [y] : B {this.capture("S.a"); $y="1000";} ;