aboutsummaryrefslogtreecommitdiff
path: root/runtime/JavaScript/tests/functional/t053heteroTP14.g
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/JavaScript/tests/functional/t053heteroTP14.g')
-rwxr-xr-xruntime/JavaScript/tests/functional/t053heteroTP14.g28
1 files changed, 28 insertions, 0 deletions
diff --git a/runtime/JavaScript/tests/functional/t053heteroTP14.g b/runtime/JavaScript/tests/functional/t053heteroTP14.g
new file mode 100755
index 0000000..25e0ac3
--- /dev/null
+++ b/runtime/JavaScript/tests/functional/t053heteroTP14.g
@@ -0,0 +1,28 @@
+grammar t053heteroTP14;
+options {
+ language=JavaScript;
+ output=AST;
+ tokenVocab=t053heteroT14;
+}
+@header {
+function V() {
+ V.superclass.constructor.apply(this, arguments);
+};
+org.antlr.lang.extend(V, org.antlr.runtime.tree.CommonTree, {
+ toString: function() {
+ return this.getText() + "<V>";
+ }
+});
+
+function W() {
+ W.superclass.constructor.apply(this, arguments);
+};
+org.antlr.lang.extend(W, org.antlr.runtime.tree.CommonTree, {
+ toString: function() {
+ return this.getText() + "<W>";
+ }
+});
+}
+a : ID INT -> ^(INT<V> ID<W>)
+ ;
+