summaryrefslogtreecommitdiff
path: root/src/parsers
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 19:52:59 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 19:52:59 +0300
commit9071f8b7852792f168d043bb0b81ca8dcb4c5575 (patch)
tree1e2c0d9f9eaac8fa72e495fb628516a7e85870ee /src/parsers
parente7d9fa2f9bcb07c7d07c4361dba39178b524572c (diff)
downloadparanucker-9071f8b7852792f168d043bb0b81ca8dcb4c5575.tar.gz
paranucker-9071f8b7852792f168d043bb0b81ca8dcb4c5575.tar.bz2
paranucker-9071f8b7852792f168d043bb0b81ca8dcb4c5575.tar.xz
paranucker-9071f8b7852792f168d043bb0b81ca8dcb4c5575.zip
Add parsing node ERROR_MAKR.
Diffstat (limited to 'src/parsers')
-rw-r--r--src/parsers/errormark.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/parsers/errormark.cpp b/src/parsers/errormark.cpp
new file mode 100644
index 0000000..f8c63be
--- /dev/null
+++ b/src/parsers/errormark.cpp
@@ -0,0 +1,36 @@
+/*
+ * Copyright (C) 2015 Andrei Karas
+ *
+ * This file is part of AstDumper.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "includes/parserincludes.h"
+
+parserDefine(ErrorMark);
+
+
+#include "nodes/errormark.h"
+
+namespace Generic
+{
+
+void parseErrorMarkNode(ErrorMarkNode *node)
+{
+ fillType(node);
+ Log::dump(node);
+}
+
+}