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