blob: ac2275d082e196e8822149799951e5f0b879a4ba [file] [log] [blame]
grammar t057autoAST13;
options {language=JavaScript;output=AST;}
a : ID INT^ ID^ ;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;