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