1 lexer grammar t052importM8; 2 options { 3 language=JavaScript; 4 } 5 import t052importS8; 6 A : 'a' {this.capture("M.A ");} ; 7 WS : (' '|'\n') {this.skip();} ; 8