15 lines
239 B
Plaintext
Executable File
15 lines
239 B
Plaintext
Executable File
parser grammar t052importS3;
|
|
options {
|
|
language=JavaScript;
|
|
}
|
|
@members {
|
|
this.capture = function(t) {
|
|
this.gt052importM3.capture(t);
|
|
};
|
|
this.foo = function() {
|
|
this.capture("foo");
|
|
};
|
|
}
|
|
|
|
a : B ;
|