blob: 967fb7a683dde86d855bfec629cece8f0e6df256 [file] [log] [blame]
grammar t058rewriteAST76;
options {language=JavaScript;output=AST;}
tokens {EXPR;}
decl : type ID '=' INT ';' -> ^(EXPR type ID INT) ;
type : 'int' | 'float' ;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;