36173618361936203621362236233624362536263627
AbstractFunction fun = findFunction(name); if (fun == null) return error(L.l("'{0}' is an unknown function.", name)); return fun.callRef(this, a0, a1, a2); } /** * Evaluates the named function. *
172173174175176177178179180181182
// XXX: qa/1d14 Value oldThis = env.setThis(UnsetValue.NULL); try { 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) {
36373638363936403641364236433644364536463647
AbstractFunction fun = findFunction(name); if (fun == null) return error(L.l("'{0}' is an unknown function.", name)); return fun.callRef(this, a0, a1, a2, a3); } /** * Evaluates the named function. *
36593660366136623663366436653666366736683669
AbstractFunction fun = findFunction(name); if (fun == null) return error(L.l("'{0}' is an unknown function.", name)); return fun.callRef(this, a0, a1, a2, a3, a4); } /** * Evaluates the named function. *
36763677367836793680368136823683368436853686
AbstractFunction fun = findFunction(name); if (fun == null) return error(L.l("'{0}' is an unknown function.", name)); return fun.callRef(this, args); } /** * Adds a class, e.g. from an include. */
229230231232233234235236237238239
else return fun.call(env, args); */ if (isRef) return fun.callRef(env, args); else if (isCopy) return fun.call(env, args).copyReturn(); else { return fun.call(env, args).toValue(); }
13711372137313741375137613771378137913801381
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)); }
39933994399539963997399839994000400140024003
AbstractFunction fun = findFunction(name); if (fun == null) return error(L.l("'{0}' is an unknown function.", name)); return fun.callRef(this); } /** * EvalRefuates the named function. *
40104011401240134014401540164017401840194020
AbstractFunction fun = findFunction(name); if (fun == null) return error(L.l("'{0}' is an unknown function.", name)); return fun.callRef(this, a0); } /** * EvalRefuates the named function. *
40284029403040314032403340344035403640374038
AbstractFunction fun = findFunction(name); if (fun == null) return error(L.l("'{0}' is an unknown function.", name)); return fun.callRef(this, a0, a1); } /** * EvalRefuates the named function. *