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