Home | History | Annotate | Download | only in functional
      1 grammar t057autoAST50;
      2 options {language=JavaScript;output=AST;}
      3 a : b ;
      4 b : ID INT ; // follow should see EOF
      5 ID : 'a'..'z'+ ;
      6 INT : '0'..'9'+;
      7 WS : (' '|'\n') {$channel=HIDDEN;} ;
      8