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