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