You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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");} ;
|