1 grammar t052importM1; 2 options { 3 language=JavaScript; 4 } 5 import t052importS1; 6 s : a ; 7 B : 'b' ; // defines B from inherited token space 8 WS : (' '|'\n') {this.skip();} ; 9