Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
9 lines
206 B
Plaintext
Executable File
9 lines
206 B
Plaintext
Executable File
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();} ;
|