1grammar t057autoAST47;
2options {language=JavaScript;output=AST;}
3tokens {EXPR;}
4decl : type^ ID '='! INT ';'! ;
5type : 'int' | 'float' ;
6ID : 'a'..'z'+ ;
7INT : '0'..'9'+;
8WS : (' '|'\n') {$channel=HIDDEN;} ;
9