Home | History | Annotate | Download | only in tests
      1 lexer grammar t006lexer;
      2 options {
      3   language = Python;
      4 }
      5 
      6 FOO: 'f' ('o' | 'a')*;
      7