174175176177178179180181182183184
env.checkTimeout(); if (isRef) return fun.callRef(env, args); else if (isCopy) return fun.callCopy(env, args); else return fun.call(env, args); //} catch (Exception e) { // throw QuercusException.create(e, env.getStackTrace()); } finally {
13851386138713881389139013911392139313941395
public Value callCopy(Env env, Value []args) { AbstractFunction fun = env.getFunction(this); if (fun != null) return fun.callCopy(env, args); else return env.warning(L.l("{0} is not a valid function", this)); }
13941395139613971398139914001401140214031404