blob: 28642eb5b974c4099af8ebda03c9ef9bfd6cb0b6 [file] [log] [blame]
grammar t057autoAST46;
options {language=JavaScript;output=AST;}
decl : type^ ID '='! INT ';'! ;
type : 'int' | 'float' ;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;