summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 19:44:10 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 19:44:10 +0300
commit3891c0b4c726e760ed751328a899871f06669b7a (patch)
treea581f8f7622b91e19e0a9bf7371ff1ee1f814ff5 /src
parentf520d05b07db6b103ebfbdcfb95e4d54dff0b71b (diff)
downloadparanucker-3891c0b4c726e760ed751328a899871f06669b7a.tar.gz
paranucker-3891c0b4c726e760ed751328a899871f06669b7a.tar.bz2
paranucker-3891c0b4c726e760ed751328a899871f06669b7a.tar.xz
paranucker-3891c0b4c726e760ed751328a899871f06669b7a.zip
Add parsing node TRUTH_ANDIF_EXPR.
Diffstat (limited to 'src')
-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/expr/truthandif_expr.h35
-rw-r--r--src/parsers/expr/truthandif_expr.cpp40
6 files changed, 81 insertions, 1 deletions
diff --git a/src/Makefile.files b/src/Makefile.files
index f25661c..4d3216e 100644
--- a/src/Makefile.files
+++ b/src/Makefile.files
@@ -138,4 +138,6 @@ SRC = analysis/analysis.cpp \
nodes/cst/vector_cst.h \
parsers/cst/vector_cst.cpp \
nodes/expr/truthorif_expr.h \
- parsers/expr/truthorif_expr.cpp \ No newline at end of file
+ parsers/expr/truthorif_expr.cpp \
+ nodes/expr/truthandif_expr.h \
+ parsers/expr/truthandif_expr.cpp \ No newline at end of file
diff --git a/src/includes/nodeincludes.h b/src/includes/nodeincludes.h
index d59568c..1f1f31d 100644
--- a/src/includes/nodeincludes.h
+++ b/src/includes/nodeincludes.h
@@ -50,3 +50,4 @@
#include "nodes/expr/nonlvalue_expr.h"
#include "nodes/cst/vector_cst.h"
#include "nodes/expr/truthorif_expr.h"
+#include "nodes/expr/truthandif_expr.h"
diff --git a/src/includes/nodeshandling.inc b/src/includes/nodeshandling.inc
index 90c7c79..c65d8ef 100644
--- a/src/includes/nodeshandling.inc
+++ b/src/includes/nodeshandling.inc
@@ -49,3 +49,4 @@ handleNodeType(VIEW_CONVERT_EXPR, ViewConvertExpr)
handleNodeType(NON_LVALUE_EXPR, NonLvalueExpr)
handleNodeType(VECTOR_CST, VectorCst)
handleNodeType(TRUTH_ORIF_EXPR, TruthOrIfExpr)
+handleNodeType(TRUTH_ANDIF_EXPR, TruthAndIfExpr)
diff --git a/src/includes/parserdefines.inc b/src/includes/parserdefines.inc
index 7e21546..ff9e3ac 100644
--- a/src/includes/parserdefines.inc
+++ b/src/includes/parserdefines.inc
@@ -49,3 +49,4 @@ parserDefine(ViewConvertExpr);
parserDefine(NonLvalueExpr);
parserDefine(VectorCst);
parserDefine(TruthOrIfExpr);
+parserDefine(TruthAndIfExpr);
diff --git a/src/nodes/expr/truthandif_expr.h b/src/nodes/expr/truthandif_expr.h
new file mode 100644
index 0000000..b7ccc68
--- /dev/null
+++ b/src/nodes/expr/truthandif_expr.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_EXPR_TRUTHANDIFEXPRNODE_H
+#define NODES_EXPR_TRUTHANDIFEXPRNODE_H
+
+#include "nodes/base/expr.h"
+
+#include <string>
+
+struct TruthAndIfExprNode : public ExprNode
+{
+ TruthAndIfExprNode() :
+ ExprNode()
+ {
+ }
+};
+
+#endif // NODES_EXPR_TRUTHANDIFEXPRNODE_H
diff --git a/src/parsers/expr/truthandif_expr.cpp b/src/parsers/expr/truthandif_expr.cpp
new file mode 100644
index 0000000..d2080c4
--- /dev/null
+++ b/src/parsers/expr/truthandif_expr.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(TruthAndIfExpr);
+
+#include "parsers/base/expr.h"
+
+#include "nodes/expr/truthandif_expr.h"
+
+namespace Generic
+{
+
+void parseTruthAndIfExprNode(TruthAndIfExprNode *node)
+{
+ fillType(node);
+ fillExprLocation(node);
+ Log::dump(node);
+
+ fillExprOperands(node);
+}
+
+}