aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/runtime/JavaScript/tests/functional/t052importT4.g
diff options
context:
space:
mode:
Diffstat (limited to 'antlr-3.4/runtime/JavaScript/tests/functional/t052importT4.g')
-rwxr-xr-xantlr-3.4/runtime/JavaScript/tests/functional/t052importT4.g10
1 files changed, 10 insertions, 0 deletions
diff --git a/antlr-3.4/runtime/JavaScript/tests/functional/t052importT4.g b/antlr-3.4/runtime/JavaScript/tests/functional/t052importT4.g
new file mode 100755
index 0000000..5ddcc73
--- /dev/null
+++ b/antlr-3.4/runtime/JavaScript/tests/functional/t052importT4.g
@@ -0,0 +1,10 @@
+parser grammar t052importT4;
+options {
+ language=JavaScript;
+}
+@members {
+ this.capture = function(t) {
+ this.gt052importM4.capture(t);
+ };
+}
+a : B {this.capture("T.a");} ; // hidden by S.a