summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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/type/method_type.h44
-rw-r--r--src/parsers/type/method_type.cpp55
6 files changed, 105 insertions, 1 deletions
diff --git a/src/Makefile.files b/src/Makefile.files
index e003617..01a0937 100644
--- a/src/Makefile.files
+++ b/src/Makefile.files
@@ -160,4 +160,6 @@ SRC = analysis/analysis.cpp \
nodes/expr/bitxor_expr.h \
parsers/expr/bitxor_expr.cpp \
nodes/expr/save_expr.h \
- parsers/expr/save_expr.cpp \ No newline at end of file
+ parsers/expr/save_expr.cpp \
+ nodes/type/method_type.h \
+ parsers/type/method_type.cpp \ No newline at end of file
diff --git a/src/includes/nodeincludes.h b/src/includes/nodeincludes.h
index e01ee04..b1247cd 100644
--- a/src/includes/nodeincludes.h
+++ b/src/includes/nodeincludes.h
@@ -61,3 +61,4 @@
#include "nodes/expr/bitior_expr.h"
#include "nodes/expr/bitxor_expr.h"
#include "nodes/expr/save_expr.h"
+#include "nodes/type/method_type.h"
diff --git a/src/includes/nodeshandling.inc b/src/includes/nodeshandling.inc
index a804821..bd20ba1 100644
--- a/src/includes/nodeshandling.inc
+++ b/src/includes/nodeshandling.inc
@@ -60,3 +60,4 @@ handleNodeType(BIT_AND_EXPR, BitAndExpr)
handleNodeType(BIT_IOR_EXPR, BitIOrExpr)
handleNodeType(BIT_XOR_EXPR, BitXorExpr)
handleNodeType(SAVE_EXPR, SaveExpr)
+handleNodeType(METHOD_TYPE, MethodType)
diff --git a/src/includes/parserdefines.inc b/src/includes/parserdefines.inc
index e5bd96f..e6abbed 100644
--- a/src/includes/parserdefines.inc
+++ b/src/includes/parserdefines.inc
@@ -60,3 +60,4 @@ parserDefine(BitAndExpr);
parserDefine(BitIOrExpr);
parserDefine(BitXorExpr);
parserDefine(SaveExpr);
+parserDefine(MethodType);
diff --git a/src/nodes/type/method_type.h b/src/nodes/type/method_type.h
new file mode 100644
index 0000000..8637995
--- /dev/null
+++ b/src/nodes/type/method_type.h
@@ -0,0 +1,44 @@
+/*
+ * 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_TYPE_METHODTYPENODE_H
+#define NODES_TYPE_METHODTYPENODE_H
+
+#include "nodes/base/type.h"
+
+#include "nodes/list/tree_list.h"
+
+#include <string>
+
+struct MethodTypeNode : public TypeNode
+{
+ MethodTypeNode() :
+ TypeNode(),
+ returnType(nullptr),
+ methodBaseType(nullptr),
+ argTypes(nullptr)
+ {
+ }
+
+ TypeNode *returnType;
+ TypeNode *methodBaseType;
+ TreeListNode *argTypes;
+};
+
+#endif // NODES_TYPE_METHODTYPENODE_H
diff --git a/src/parsers/type/method_type.cpp b/src/parsers/type/method_type.cpp
new file mode 100644
index 0000000..264d539
--- /dev/null
+++ b/src/parsers/type/method_type.cpp
@@ -0,0 +1,55 @@
+/*
+ * 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(MethodType);
+
+#include "parsers/base/type.h"
+
+#include "nodes/type/method_type.h"
+
+namespace Generic
+{
+
+void parseMethodTypeNode(MethodTypeNode *node)
+{
+ fillType(node);
+ Log::dump(node);
+
+ fillTypeName(node);
+ node->returnType = static_cast<TypeNode*>(createParseNode(
+ node,
+ TREE_TYPE(node->gccNode),
+ "method return type"));
+ fillTypeAttributes(node);
+
+ node->methodBaseType = static_cast<TypeNode*>(createParseNode(
+ node,
+ TYPE_METHOD_BASETYPE(node->gccNode),
+ "method base type"));
+
+ node->argTypes = static_cast<TreeListNode*>(createParseNode(
+ node,
+ TYPE_ARG_TYPES(node->gccNode),
+ TREE_LIST,
+ "arg types"));
+}
+
+}