summaryrefslogtreecommitdiff
path: root/src/analysis/expression.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-09 17:21:55 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-09 17:21:55 +0300
commitf689365aa0058a4c06e158d0a9b547470d8a87b9 (patch)
treee8cdfedd02d9737e38d8c3759d30e8168cfdacb9 /src/analysis/expression.cpp
parentcb33d50270c12f3f293aabefae0b7fbb4f1dbc13 (diff)
downloadparanucker-f689365aa0058a4c06e158d0a9b547470d8a87b9.tar.gz
paranucker-f689365aa0058a4c06e158d0a9b547470d8a87b9.tar.bz2
paranucker-f689365aa0058a4c06e158d0a9b547470d8a87b9.tar.xz
paranucker-f689365aa0058a4c06e158d0a9b547470d8a87b9.zip
Add method for handle in analysis MODIFY_EXPR node.
Diffstat (limited to 'src/analysis/expression.cpp')
-rw-r--r--src/analysis/expression.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/analysis/expression.cpp b/src/analysis/expression.cpp
new file mode 100644
index 0000000..6745a42
--- /dev/null
+++ b/src/analysis/expression.cpp
@@ -0,0 +1,42 @@
+/*
+ * 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 "analysis/expression.h"
+
+#include "command.h"
+#include "logger.h"
+
+#include "analysis/analysis.h"
+#include "analysis/walkitem.h"
+
+#include "nodes/expr/modify_expr.h"
+
+#include <set>
+
+#include "localconsts.h"
+
+namespace Analysis
+{
+
+WalkItem analyseModifyExpr(ModifyExprNode *node, WalkItem wi)
+{
+ return wi;
+}
+
+}