aboutsummaryrefslogtreecommitdiffstats
path: root/src/lift.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-13 20:54:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-13 20:54:01 +0000
commit3bed7f70fb2793cf7ba82473526ac1ac97de1973 (patch)
treeef20e640a9976916642a056631e6b1b5c24dd7b6 /src/lift.cpp
parent67165233421d658a901ebf4eba7c14cda85f34d3 (diff)
downloadresp-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/lift.cpp')
-rw-r--r--src/lift.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lift.cpp b/src/lift.cpp
index d97e541..83c0491 100644
--- a/src/lift.cpp
+++ b/src/lift.cpp
@@ -41,7 +41,7 @@ AFn::lift(CEnv& cenv)
return;
AType* protT = type->at(1)->as<AType*>();
- cenv.engine()->liftCall(cenv, this, *protT);
+ cenv.engine()->compileFunction(cenv, this, *protT);
}
void
@@ -63,7 +63,7 @@ ACall::lift(CEnv& cenv)
if (c->prot()->size() > size() - 1)
throw Error(loc, (format("too few arguments to function `%1%'") % at(0)->str()).str());
- cenv.engine()->liftCall(cenv, c, argsT); // Lift called closure
+ cenv.engine()->compileFunction(cenv, c, argsT); // Lift called closure
}
void