Add sources

This commit is contained in:
2018-06-05 22:30:22 +02:00
parent e28912dc5e
commit 9b56ec979d
143 changed files with 8636 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#pragma once
#include "../Statement.h"
#include <vector>
namespace AST
{
class Expression;
class ExpressionList : public Statement
{
public:
explicit ExpressionList (const Expression * pExpr);
virtual ~ExpressionList (void);
virtual EStatementType getStatementType (void) const { return(EXPRESSION_LIST); }
const std::vector<const Expression *> & getExpressions(void) const { return(m_aExpressions); }
private:
std::vector<const Expression *> m_aExpressions;
};
}