]> pd.if.org Git - pccts/commitdiff
auto commit for import
authorTerence Parr <>
Mon, 14 Mar 1994 23:42:26 +0000 (17:42 -0600)
committerNathan Wagner <nw@hydaspes.if.org>
Sun, 26 Feb 2017 02:16:50 +0000 (20:16 -0600)
testcpp/6/test.g [new file with mode: 0755]

diff --git a/testcpp/6/test.g b/testcpp/6/test.g
new file mode 100755 (executable)
index 0000000..a61f534
--- /dev/null
@@ -0,0 +1,20 @@
+/* This is test.g which tests linking multiple scanners/parsers together;
+ * DLG-based scanner
+ */
+
+<<
+typedef ANTLRCommonToken ANTLRToken;
+>>
+
+#token "[\ \t\n]+"     <<skip();>>
+
+class A {
+
+e      :       IDENTIFIER NUMBER
+               <<fprintf(stderr, "text is %s,%s\n", $1->getText(), $2->getText());>>
+       ;
+
+}
+
+#token IDENTIFIER      "[a-z]+"
+#token NUMBER          "[0-9]+"