Home | History | Annotate | Download | only in tests
      1 lexer grammar t048rewrite2;
      2 options {
      3     language=Python;
      4 }
      5 
      6 ID : 'a'..'z'+;
      7 INT : '0'..'9'+;
      8 SEMI : ';';
      9 PLUS : '+';
     10 MUL : '*';
     11 ASSIGN : '=';
     12 WS : ' '+;
     13