PorygonLang/src/Binder/Binder.hpp

15 lines
300 B
C++

#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