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