aboutsummaryrefslogtreecommitdiff
path: root/runtime/JavaScript/tests/functional/t058rewriteAST5.g
blob: 6e367698c0b328e552ab75b24018857b8e3fcd26 (plain)
1
2
3
4
5
6
7

grammar t058rewriteAST5;
options {language=JavaScript;output=AST;}
a : ID -> ID[ ];
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;