More work on binder, implements basic literal expressions

This commit is contained in:
2019-05-21 20:59:26 +02:00
parent 2fe6f570ec
commit 80998eab14
7 changed files with 251 additions and 3 deletions

View File

@@ -6,6 +6,7 @@
#include <string>
#include "Diagnostics/Diagnostics.hpp"
#include "Binder/BoundStatements/BoundStatement.hpp"
using namespace std;
@@ -15,6 +16,7 @@ class Script {
};
void Parse(string script);
BoundScriptStatement* BoundScript;
public:
static Script Create(string script);
Diagnostics* Diagnostics;