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.

9 lines
206 B

grammar t052importM2;
options {
language=JavaScript;
}
import t052importS2;
s : label=a[3] {this.capture($label.y);} ;
B : 'b' ; // defines B from inherited token space
WS : (' '|'\n') {this.skip();} ;