aboutsummaryrefslogtreecommitdiff
path: root/runtime/JavaScript/tests/functional/t051treeRewriteASTd.g
blob: 2b9cea63cc978bb041039992647296352d7fc2d0 (plain)
1
2
3
4
5
6
7
8
9
grammar t051treeRewriteASTd;
options {
    language=JavaScript;
    output=AST;
}
a : ID ;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\\n') {$channel=HIDDEN;} ;