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