Added empty statement

This commit is contained in:
Rafał Grodziński
2025-06-01 10:39:15 +09:00
parent 05e3def411
commit 28e892ca12
5 changed files with 59 additions and 10 deletions

View File

@@ -4,6 +4,7 @@
#include <vector>
#include "Token.h"
#include "Expression.h"
#include "Statement.h"
using namespace std;
@@ -22,7 +23,8 @@ private:
public:
Parser(vector<Token> tokens);
shared_ptr<Expression> getExpression();
//shared_ptr<Expression> getExpression();
vector<shared_ptr<Statement>> getStatements();
};
#endif