1grammar t057autoAST48; 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