PorygonLang/src/Binder/Binder.hpp

15 lines
300 B
C++
Raw Normal View History

2019-05-21 16:09:08 +00:00
#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