summaryrefslogtreecommitdiff
path: root/src/nodes/type
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 21:16:07 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 21:16:07 +0300
commitd804778d0c4a809ca854ffa7ba77cad5bea53de0 (patch)
tree09f663115f3b687af2729c80c4de0ba382095855 /src/nodes/type
parent61579efda8ea0ec8b2090124d1e5919e78e79612 (diff)
downloadparanucker-d804778d0c4a809ca854ffa7ba77cad5bea53de0.tar.gz
paranucker-d804778d0c4a809ca854ffa7ba77cad5bea53de0.tar.bz2
paranucker-d804778d0c4a809ca854ffa7ba77cad5bea53de0.tar.xz
paranucker-d804778d0c4a809ca854ffa7ba77cad5bea53de0.zip
Add parsing node METHOD_TYPE.
Diffstat (limited to 'src/nodes/type')
-rw-r--r--src/nodes/type/method_type.h44
1 files changed, 44 insertions, 0 deletions
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