aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/runtime/JavaScript/tests/functional/t052importS3.g
blob: ba010d986ee00aa5acab3ab0920b1232cfcc3563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
parser grammar t052importS3;
options {
    language=JavaScript;
}
@members {
    this.capture = function(t) {
        this.gt052importM3.capture(t);
    };
    this.foo = function() {
        this.capture("foo");
    };
}
        
a : B ;