8 lines
172 B
Plaintext
Executable File
8 lines
172 B
Plaintext
Executable File
|
|
grammar t058rewriteAST59;
|
|
options {language=JavaScript;output=AST;}
|
|
tokens {BLOCK;}
|
|
a : x+=b x+=b -> $x $x*;
|
|
b : ID ;
|
|
ID : 'a'..'z'+ ;
|
|
WS : (' '|'\n') {$channel=HIDDEN;} ; |