8 lines
194 B
Plaintext
Executable File
8 lines
194 B
Plaintext
Executable File
|
|
grammar t058rewriteAST50;
|
|
options {language=JavaScript;output=AST;}
|
|
a : 'int' ID ';' -> 'int' ID 'int' ID ;
|
|
op : '+'|'-' ;
|
|
ID : 'a'..'z'+ ;
|
|
INT : '0'..'9'+;
|
|
WS : (' '|'\n') {$channel=HIDDEN;} ; |