summaryrefslogtreecommitdiff
path: root/src/analysis/expression.h
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.h
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.h')
-rw-r--r--src/analysis/expression.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/analysis/expression.h b/src/analysis/expression.h
new file mode 100644
index 0000000..b32e099
--- /dev/null
+++ b/src/analysis/expression.h
@@ -0,0 +1,33 @@
+/*
+ * 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 ANALYSIS_EXPRESSION_H
+#define ANALYSIS_EXPRESSION_H
+
+#include "includes.h"
+
+struct ModifyExprNode;
+struct WalkItem;
+
+namespace Analysis
+{
+ WalkItem analyseModifyExpr(ModifyExprNode *node, WalkItem wi);
+}
+
+#endif // ANALYSIS_EXPRESSION_H