summaryrefslogtreecommitdiff
path: root/src/nodes/stmt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-16 23:51:04 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-16 23:51:04 +0300
commit8d8ef94e9595488fa1b2fdfcce75ef7f74aa0dca (patch)
treefbf122997b4cf3eeb3b8a0c0b28f762600e2ef50 /src/nodes/stmt
parentc30dfff60882585eb2c6e6a3ec2a316209a247cb (diff)
downloadparanucker-8d8ef94e9595488fa1b2fdfcce75ef7f74aa0dca.tar.gz
paranucker-8d8ef94e9595488fa1b2fdfcce75ef7f74aa0dca.tar.bz2
paranucker-8d8ef94e9595488fa1b2fdfcce75ef7f74aa0dca.tar.xz
paranucker-8d8ef94e9595488fa1b2fdfcce75ef7f74aa0dca.zip
Add parsing node SWITCH_STMT.
Diffstat (limited to 'src/nodes/stmt')
-rw-r--r--src/nodes/stmt/switch_stmt.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/nodes/stmt/switch_stmt.h b/src/nodes/stmt/switch_stmt.h
new file mode 100644
index 0000000..a53c554
--- /dev/null
+++ b/src/nodes/stmt/switch_stmt.h
@@ -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/>.
+ */
+
+#ifndef NODES_STMT_SWITCHSTMTNODE_H
+#define NODES_STMT_SWITCHSTMTNODE_H
+
+#include "nodes/base/stmt.h"
+
+#include <string>
+
+struct SwitchStmtNode : public StmtNode
+{
+ SwitchStmtNode() :
+ StmtNode(),
+ body(nullptr),
+ condition(nullptr),
+ scope(nullptr),
+ type(nullptr)
+ {
+ }
+
+ Node *body;
+ Node *condition;
+ Node *scope;
+ Node *type;
+};
+
+#endif // NODES_STMT_SWITCHSTMTNODE_H