Lines Matching full:pass
26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS myObject.apply() is [myObject, "myObject.apply"]
30 PASS forwarder(myObject) is [myObject, "myObject.apply"]
31 PASS myFunction('arg1') is [this, "myFunction", "arg1"]
32 PASS forwarder(myFunction, null, ['arg1']) is [this, "myFunction", "arg1"]
33 PASS myFunction.apply(myObject, ['arg1']) is [myObject, "myFunction", "arg1"]
34 PASS myFunction.apply(myObject, arg1Array) is [myObject, "myFunction", "arg1"]
35 PASS forwarder(myFunction, 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]
39 PASS myFunction.aliasedApply(myObject, ['arg1']) is [myObject, "myFunction", "arg1"]
40 PASS myFunction.aliasedApply() is [this, "myFunction", undefined]
41 PASS myFunction.aliasedApply(null) is [this, "myFunction", undefined]
42 PASS myFunction.aliasedApply(undefined) is [this, "myFunction", undefined]
43 PASS myFunctionWithApply.apply(myObject, ['arg1']) is [myFunctionWithApply, "myFunctionWithApply.apply", myObject]
44 PASS myFunctionWithApply.aliasedApply(myObject, ['arg1']) is [myObject, "myFunctionWithApply", "arg1"]
45 PASS myFunctionWithApply.apply(myObject, arg1Array) is [myFunctionWithApply, "myFunctionWithApply.apply", myObject]
46 PASS forwarder(myFunctionWithApply, myObject, arg1Array) is [myFunctionWithApply, "myFunctionWithApply.apply", myObject]
47 PASS myFunctionWithApply.aliasedApply(myObject, arg1Array) is [myObject, "myFunctionWithApply", "arg1"]
48 PASS myFunction.apply(null, new Array(5000000)) threw exception RangeError: Maximum call stack size exceeded.
49 PASS myFunction.apply(null, new Array(1 << 30)) threw exception RangeError: Maximum call stack size exceeded.
50 PASS recurseArguments.apply(null, new Array(50000)) threw exception RangeError: Maximum call stack size exceeded.
51 PASS successfullyParsed is true