#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