/**
* Evaluates the function, returning a reference.
*/
public Value callRef(Env env, Value []args)
{
AbstractFunction fun = env.getFunction(this);
if (fun != null)
return fun.callRef(env, args);
else
return env.warning(L.l("{0} is not a valid function",
this));
}