Files
2023-10-13 14:01:41 +00:00

7 lines
170 B
Plaintext
Executable File

grammar t058rewriteAST46;
options {language=JavaScript;output=AST;}
tokens {MOD;}
a : ID (',' ID)* ';' -> ID+ ID+ ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;