Initial layout for binder

This commit is contained in:
2019-05-21 18:09:08 +02:00
parent 2df4a71ed8
commit 1e5cd010a1
7 changed files with 89 additions and 9 deletions

14
src/Binder/Binder.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef PORYGONLANG_BINDER_HPP
#define PORYGONLANG_BINDER_HPP
#include "../Parser/ParsedStatements/ParsedScriptStatement.hpp"
#include "BoundStatements/BoundStatement.hpp"
class Binder {
public:
static BoundScriptStatement* Bind(ParsedScriptStatement* s);
};
#endif //PORYGONLANG_BINDER_HPP