summaryrefslogtreecommitdiff
path: root/src/parsers/result_decl.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-04 14:43:35 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-04 14:43:35 +0300
commit8f5d9d7180640b2b1f0c7dd5e1e264c8040b43e5 (patch)
treebb462eace440d02d48694367f48ed06d7f1b3e88 /src/parsers/result_decl.cpp
parentaf598a91862ae52862d4c90a84fa82ed8c16f739 (diff)
downloadparanucker-8f5d9d7180640b2b1f0c7dd5e1e264c8040b43e5.tar.gz
paranucker-8f5d9d7180640b2b1f0c7dd5e1e264c8040b43e5.tar.bz2
paranucker-8f5d9d7180640b2b1f0c7dd5e1e264c8040b43e5.tar.xz
paranucker-8f5d9d7180640b2b1f0c7dd5e1e264c8040b43e5.zip
Rename parsers to better names.
Diffstat (limited to 'src/parsers/result_decl.cpp')
-rw-r--r--src/parsers/result_decl.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/parsers/result_decl.cpp b/src/parsers/result_decl.cpp
new file mode 100644
index 0000000..b17796e
--- /dev/null
+++ b/src/parsers/result_decl.cpp
@@ -0,0 +1,52 @@
+/*
+ * 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 "parsers/result_decl.h"
+
+#include "logger.h"
+
+#include "parsers/generic.h"
+
+#include "parsers/base/decl.h"
+
+#include "nodes/resultdeclnode.h"
+#include "nodes/typenode.h"
+
+#include "localconsts.h"
+
+namespace Generic
+{
+
+void parseResultDeclNode(ResultDeclNode *node)
+{
+ fillType(node);
+ fillLocation(node);
+ fillDeclLabel(node);
+ Log::log(node);
+
+ fillDeclAutoGenerated(node);
+
+ fillDeclAttributes(node);
+ node->resultType = static_cast<TypeNode*>(createParseNode(
+ node,
+ TREE_TYPE(node->gccNode),
+ "result type"));
+}
+
+}