diff options
Diffstat (limited to 'src/tuplr.hpp')
-rw-r--r-- | src/tuplr.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tuplr.hpp b/src/tuplr.hpp index a76f039..2814578 100644 --- a/src/tuplr.hpp +++ b/src/tuplr.hpp @@ -627,14 +627,14 @@ struct Engine { const ATuple& argsT, const vector<string> argNames=vector<string>()) = 0; - virtual void finishFunction(CEnv& cenv, CFunction f, const AType* retT, CValue ret) = 0; - virtual void eraseFunction(CEnv& cenv, CFunction f) = 0; - virtual void liftCall(CEnv& cenv, AFn* fn, const AType& argsT) = 0; - virtual CValue compileLiteral(CEnv& cenv, AST* lit) = 0; - virtual CValue compileCall(CEnv& cenv, CFunction f, const vector<CValue>& args) = 0; - virtual CValue compilePrimitive(CEnv& cenv, APrimitive* prim) = 0; - virtual CValue compileIf(CEnv& cenv, AIf* aif) = 0; - virtual void writeModule(CEnv& cenv, std::ostream& os) = 0; + virtual void finishFunction(CEnv& cenv, CFunction f, const AType* retT, CValue ret) = 0; + virtual void eraseFunction(CEnv& cenv, CFunction f) = 0; + virtual CFunction compileFunction(CEnv& cenv, AFn* fn, const AType& argsT) = 0; + virtual CValue compileLiteral(CEnv& cenv, AST* lit) = 0; + virtual CValue compileCall(CEnv& cenv, CFunction f, const vector<CValue>& args) = 0; + virtual CValue compilePrimitive(CEnv& cenv, APrimitive* prim) = 0; + virtual CValue compileIf(CEnv& cenv, AIf* aif) = 0; + virtual void writeModule(CEnv& cenv, std::ostream& os) = 0; virtual const string call(CEnv& cenv, CFunction f, AType* retT) = 0; }; |