summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 15:51:14 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 15:51:14 +0300
commit935220297043e59853d54697bdf51c96ac1d1812 (patch)
tree1b6cd31d96cc74bbb8295f37d2656ebbd3ceb031
parent1034d423476ef1a9df030a3b83304157c6d83075 (diff)
downloadparanucker-935220297043e59853d54697bdf51c96ac1d1812.tar.gz
paranucker-935220297043e59853d54697bdf51c96ac1d1812.tar.bz2
paranucker-935220297043e59853d54697bdf51c96ac1d1812.tar.xz
paranucker-935220297043e59853d54697bdf51c96ac1d1812.zip
Add parsing node EH_SPEC_BLOCK.
-rw-r--r--src/Makefile.files4
-rw-r--r--src/includes/nodeincludes.h1
-rw-r--r--src/includes/nodeshandling.inc1
-rw-r--r--src/includes/parserdefines.inc1
-rw-r--r--src/nodes/block/ehspec_block.h35
-rw-r--r--src/parsers/block/ehspec_block.cpp40
6 files changed, 81 insertions, 1 deletions
diff --git a/src/Makefile.files b/src/Makefile.files
index c955b6c..c53f6d4 100644
--- a/src/Makefile.files
+++ b/src/Makefile.files
@@ -124,4 +124,6 @@ SRC = analysis/analysis.cpp \
nodes/type/record_type.h \
parsers/type/record_type.cpp \
nodes/expr/target_expr.h \
- parsers/expr/target_expr.cpp \ No newline at end of file
+ parsers/expr/target_expr.cpp \
+ nodes/block/ehspec_block.h \
+ parsers/block/ehspec_block.cpp \ No newline at end of file
diff --git a/src/includes/nodeincludes.h b/src/includes/nodeincludes.h
index 62e21d1..b83d3c8 100644
--- a/src/includes/nodeincludes.h
+++ b/src/includes/nodeincludes.h
@@ -43,3 +43,4 @@
#include "nodes/type/nullptr_type.h"
#include "nodes/type/record_type.h"
#include "nodes/expr/target_expr.h"
+#include "nodes/block/ehspec_block.h"
diff --git a/src/includes/nodeshandling.inc b/src/includes/nodeshandling.inc
index 9667cd7..4fb4b33 100644
--- a/src/includes/nodeshandling.inc
+++ b/src/includes/nodeshandling.inc
@@ -42,3 +42,4 @@ handleNodeType(BOOLEAN_TYPE, BooleanType)
handleNodeType(NULLPTR_TYPE, NullPtrType)
handleNodeType(RECORD_TYPE, RecordType)
handleNodeType(TARGET_EXPR, TargetExpr)
+handleNodeType(EH_SPEC_BLOCK, EhSpecBlock)
diff --git a/src/includes/parserdefines.inc b/src/includes/parserdefines.inc
index ccd51c4..782a6c3 100644
--- a/src/includes/parserdefines.inc
+++ b/src/includes/parserdefines.inc
@@ -42,3 +42,4 @@ parserDefine(BooleanType);
parserDefine(NullPtrType);
parserDefine(RecordType);
parserDefine(TargetExpr);
+parserDefine(EhSpecBlock);
diff --git a/src/nodes/block/ehspec_block.h b/src/nodes/block/ehspec_block.h
new file mode 100644
index 0000000..dee1a24
--- /dev/null
+++ b/src/nodes/block/ehspec_block.h
@@ -0,0 +1,35 @@
+/*
+ * 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/>.
+ */
+
+#ifndef NODES_BLOCK_EHSPECBLOCKNODE_H
+#define NODES_BLOCK_EHSPECBLOCKNODE_H
+
+#include "nodes/base/expr.h"
+
+#include <string>
+
+struct EhSpecBlockNode : public ExprNode
+{
+ EhSpecBlockNode() :
+ ExprNode()
+ {
+ }
+};
+
+#endif // NODES_BLOCK_EHSPECBLOCKNODE_H
diff --git a/src/parsers/block/ehspec_block.cpp b/src/parsers/block/ehspec_block.cpp
new file mode 100644
index 0000000..a4be861
--- /dev/null
+++ b/src/parsers/block/ehspec_block.cpp
@@ -0,0 +1,40 @@
+/*
+ * 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(EhSpecBlock);
+
+#include "parsers/base/expr.h"
+
+#include "nodes/block/ehspec_block.h"
+
+namespace Generic
+{
+
+void parseEhSpecBlockNode(EhSpecBlockNode *node)
+{
+ fillType(node);
+ fillExprLocation(node);
+ Log::dump(node);
+
+ fillExprOperands(node);
+}
+
+}