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

9 lines
171 B
Plaintext
Executable File

grammar t052importM1;
options {
language=JavaScript;
}
import t052importS1;
s : a ;
B : 'b' ; // defines B from inherited token space
WS : (' '|'\n') {this.skip();} ;