aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast_statement.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'c_parser/include/ast_statement.hpp')
-rw-r--r--c_parser/include/ast_statement.hpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/c_parser/include/ast_statement.hpp b/c_parser/include/ast_statement.hpp
new file mode 100644
index 0000000..725308b
--- /dev/null
+++ b/c_parser/include/ast_statement.hpp
@@ -0,0 +1,37 @@
+#ifndef AST_STATEMENT_HPP
+#define AST_STATEMENT_HPP
+
+class ast_Statement : public ast_Base {
+protected:
+ mutable std::vector<const ast_Base*> ast_list;
+
+public:
+ ast_Statement(const ast_Base* _el) {
+ ast_list.push_back(_el);
+ }
+
+ virtual void print() const {
+ for(size_t i = 0; i < ast_list.size(); ++i) {
+ ast_list[i]->print();
+ }
+ }
+
+ virtual void push(const ast_Base* _var) const {
+ ast_list.push_back(_var);
+ }
+};
+
+class ast_CompoundStatement : public ast_Statement {
+public:
+ ast_CompoundStatement(const ast_Base* _el) : ast_Statement(_el) {}
+
+ virtual void print() const override {
+ std::cout << "<Scope>" << std::endl;
+ for(size_t i = 0; i < ast_list.size(); ++i) {
+ ast_list[i]->print();
+ }
+ std::cout << "</Scope>" << std::endl;
+ }
+};
+
+#endif