7 lines
166 B
Plaintext
Executable File
7 lines
166 B
Plaintext
Executable File
grammar t057autoAST49;
|
|
options {language=JavaScript;output=AST;}
|
|
a : ID INT ; // follow is EOF
|
|
ID : 'a'..'z'+ ;
|
|
INT : '0'..'9'+;
|
|
WS : (' '|'\n') {$channel=HIDDEN;} ;
|