android13/external/antlr/runtime/JavaScript/tests/functional/t052importT5.g

12 lines
227 B
Plaintext
Executable File

parser grammar t052importT5;
options {
language=JavaScript;
}
tokens { C; B; A; } /// reverse order
@members {
this.capture = function(t) {
this.gt052importM5.capture(t);
};
}
y : A {this.capture("T.y");} ;