Home | History | Annotate | Download | only in functional
      1 // @@ANTLR Tool Options@@: -trace
      2 tree grammar t051treeRewriteASTwWalker;
      3 options {
      4     language=JavaScript;
      5     output=AST;
      6     ASTLabelType=CommonTree;
      7     tokenVocab=t051treeRewriteASTw;
      8     rewrite=true;
      9 }
     10 s : a ;
     11 a : b ; // a.tree must become b.tree
     12 b : ^(ID INT) -> INT
     13   ;
     14