8 lines
153 B
Plaintext
Executable File
8 lines
153 B
Plaintext
Executable File
lexer grammar t052importM8;
|
|
options {
|
|
language=JavaScript;
|
|
}
|
|
import t052importS8;
|
|
A : 'a' {this.capture("M.A ");} ;
|
|
WS : (' '|'\n') {this.skip();} ;
|