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

grammar t058rewriteAST63;
options {language=JavaScript;output=AST;}
tokens {BLOCK;}
a : x+=ID (y=b)? -> ($x $y)?;
b : ID ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;