Home | History | Annotate | Download | only in functional
      1 
      2 grammar t058rewriteAST46;
      3 options {language=JavaScript;output=AST;}
      4 tokens {MOD;}
      5 a : ID (',' ID)* ';' -> ID+ ID+ ;
      6 ID : 'a'..'z'+ ;
      7 WS : (' '|'\n') {$channel=HIDDEN;} ;