Home | History | Annotate | Download | only in functional
      1 tree grammar t051treeRewriteASTcWalker;
      2 options {
      3     language=JavaScript;
      4     output=AST;
      5     ASTLabelType=CommonTree;
      6     tokenVocab=t049treeparserc;
      7 }
      8 a : ^(ID INT) -> ^(INT ID) | INT;
      9