aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resp.hpp')
-rw-r--r--src/resp.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resp.hpp b/src/resp.hpp
index 5d3a93c..6e4dc77 100644
--- a/src/resp.hpp
+++ b/src/resp.hpp
@@ -654,18 +654,18 @@ Subst unify(const Constraints& c);
struct Engine {
virtual ~Engine() {}
+ typedef const vector<CVal> ValVec;
+
virtual CFunc startFunction(
CEnv& cenv,
const std::string& name,
const ATuple* args,
- const AType* retT,
- const ATuple& argsT) = 0;
+ const AType* type) = 0;
- typedef const vector<CVal> ValVec;
+ virtual void pushFunctionArgs(CEnv& cenv, const AFn* fn, const AType* type, CFunc f) = 0;
virtual void finishFunction(CEnv& cenv, CFunc f, CVal ret) = 0;
virtual void eraseFunction(CEnv& cenv, CFunc f) = 0;
- virtual CFunc compileFunction(CEnv& cenv, const AFn* fn, const AType* type) = 0;
virtual CVal compileTup(CEnv& cenv, const AType* t, ValVec& f) = 0;
virtual CVal compileDot(CEnv& cenv, CVal tup, int32_t index) = 0;
virtual CVal compileLiteral(CEnv& cenv, const AST* lit) = 0;