Home | History | Annotate | Download | only in functional
      1 grammar t052importM5;
      2 options {
      3     language=JavaScript;
      4 }
      5 import t052importS5, t052importT5;
      6 s : x y ; // matches AA, which should be "aa"
      7 B : 'b' ; // another order: B, A, C
      8 A : 'a' ;
      9 C : 'c' ;
     10 WS : (' '|'\n') {this.skip();} ;
     11