Lines Matching refs:apply
24 This tests that we can correctly call Function.prototype.apply
29 PASS myObject.apply() is [myObject, "myObject.apply"]
30 PASS forwarder(myObject) is [myObject, "myObject.apply"]
33 PASS myFunction.apply(myObject, ['arg1']) is [myObject, "myFunction", "arg1"]
34 PASS myFunction.apply(myObject, arg1Array) is [myObject, "myFunction", "arg1"]
36 PASS myFunction.apply() is [this, "myFunction", undefined]
37 PASS myFunction.apply(null) is [this, "myFunction", undefined]
38 PASS myFunction.apply(undefined) is [this, "myFunction", undefined]
43 PASS myFunctionWithApply.apply(myObject, ['arg1']) is [myFunctionWithApply, "myFunctionWithApply.ap…
45 PASS myFunctionWithApply.apply(myObject, arg1Array) is [myFunctionWithApply, "myFunctionWithApply.a…
46 …tionWithApply, myObject, arg1Array) is [myFunctionWithApply, "myFunctionWithApply.apply", myObject]
48 PASS recurseArguments.apply(null, new Array(50000)) threw exception RangeError: Maximum call stack …