aboutsummaryrefslogtreecommitdiff
path: root/runtime/JavaScript/tests/functional/t058rewriteAST32.g
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/JavaScript/tests/functional/t058rewriteAST32.g')
-rwxr-xr-xruntime/JavaScript/tests/functional/t058rewriteAST32.g9
1 files changed, 9 insertions, 0 deletions
diff --git a/runtime/JavaScript/tests/functional/t058rewriteAST32.g b/runtime/JavaScript/tests/functional/t058rewriteAST32.g
new file mode 100755
index 0000000..cc3c3aa
--- /dev/null
+++ b/runtime/JavaScript/tests/functional/t058rewriteAST32.g
@@ -0,0 +1,9 @@
+
+grammar t058rewriteAST32;
+options {language=JavaScript;output=AST;}
+tokens {BLOCK;}
+a : lc='{' ID+ '}' -> ^(BLOCK[$lc] ID+) ;
+type : 'int' | 'float' ;
+ID : 'a'..'z'+ ;
+INT : '0'..'9'+;
+WS : (' '|'\n') {$channel=HIDDEN;} ; \ No newline at end of file