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