diff options
author | David Robillard <d@drobilla.net> | 2009-10-13 20:54:01 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-10-13 20:54:01 +0000 |
commit | 3bed7f70fb2793cf7ba82473526ac1ac97de1973 (patch) | |
tree | ef20e640a9976916642a056631e6b1b5c24dd7b6 /src/tuplr.hpp | |
parent | 67165233421d658a901ebf4eba7c14cda85f34d3 (diff) | |
download | resp-3bed7f70fb2793cf7ba82473526ac1ac97de1973.tar.gz resp-3bed7f70fb2793cf7ba82473526ac1ac97de1973.tar.bz2 resp-3bed7f70fb2793cf7ba82473526ac1ac97de1973.zip |
liftCall -> compileFunction.
git-svn-id: http://svn.drobilla.net/resp/tuplr@208 ad02d1e2-f140-0410-9f75-f8b11f17cedd
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; }; |