Lines Matching refs:thisArg
24 var thisArg;
26 thisArg = %_Arguments(1);
29 if (IS_NULL_OR_UNDEFINED(thisArg)) {
30 thisArg = %GetDefaultReceiver(predicate) || thisArg;
31 } else if (!IS_SPEC_OBJECT(thisArg) && %IsSloppyModeFunction(predicate)) {
32 thisArg = ToObject(thisArg);
38 if (%_CallFunction(thisArg, element, i, array, predicate)) {
59 var thisArg;
61 thisArg = %_Arguments(1);
64 if (IS_NULL_OR_UNDEFINED(thisArg)) {
65 thisArg = %GetDefaultReceiver(predicate) || thisArg;
66 } else if (!IS_SPEC_OBJECT(thisArg) && %IsSloppyModeFunction(predicate)) {
67 thisArg = ToObject(thisArg);
73 if (%_CallFunction(thisArg, element, i, array, predicate)) {