Home | History | Annotate | Download | only in functional
      1 parser grammar t052importT5;
      2 options {
      3     language=JavaScript;
      4 }
      5 tokens { C; B; A; } /// reverse order
      6 @members {
      7     this.capture = function(t) {
      8         this.gt052importM5.capture(t);
      9     };
     10 }
     11 y : A {this.capture("T.y");} ;
     12