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

grammar t058rewriteAST64;
options {language=JavaScript;output=AST;}
tokens {BLOCK;}
a : ID -> ID? ; // match an ID to optional ID
b : ID ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;