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