summaryrefslogtreecommitdiff
path: root/src/parsers/expr
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-08 15:27:41 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-08 15:27:41 +0300
commitc485438197cd74c6d1a99f1e0816503379a48e28 (patch)
tree1219019c055b59bdbb60cb90a3e49460d7d0a03e /src/parsers/expr
parent6cf96443f78b067a586a939d7e6e2853958554a3 (diff)
downloadparanucker-c485438197cd74c6d1a99f1e0816503379a48e28.tar.gz
paranucker-c485438197cd74c6d1a99f1e0816503379a48e28.tar.bz2
paranucker-c485438197cd74c6d1a99f1e0816503379a48e28.tar.xz
paranucker-c485438197cd74c6d1a99f1e0816503379a48e28.zip
Add parsing node LOOP_EXPR.
Diffstat (limited to 'src/parsers/expr')
-rw-r--r--src/parsers/expr/loop_expr.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/parsers/expr/loop_expr.cpp b/src/parsers/expr/loop_expr.cpp
new file mode 100644
index 0000000..6f291f0
--- /dev/null
+++ b/src/parsers/expr/loop_expr.cpp
@@ -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/>.
+ */
+
+#include "includes/parserincludes.h"
+
+parserDefine(LoopExpr);
+
+#include "parsers/base/expr.h"
+
+#include "nodes/expr/loop_expr.h"
+
+namespace Generic
+{
+
+void parseLoopExprNode(LoopExprNode *node)
+{
+ fillType(node);
+ Log::log(node);
+
+// fillExprOperands(node);
+
+ node->body = createParseNode(
+ node,
+ LOOP_EXPR_BODY(node->gccNode),
+ "body");
+}
+
+}