Home | History | Annotate | Download | only in webkit

Lines Matching full:shouldbe

51 shouldBe("myObject.apply()", '[myObject, "myObject.apply"]');
52 shouldBe("forwarder(myObject)", '[myObject, "myObject.apply"]');
53 shouldBe("myFunction('arg1')", '[this, "myFunction", "arg1"]');
54 shouldBe("forwarder(myFunction, null, ['arg1'])", '[this, "myFunction", "arg1"]');
55 shouldBe("myFunction.apply(myObject, ['arg1'])", '[myObject, "myFunction", "arg1"]');
56 shouldBe("myFunction.apply(myObject, arg1Array)", '[myObject, "myFunction", "arg1"]');
57 shouldBe("forwarder(myFunction, myObject, arg1Array)", '[myObject, "myFunction", "arg1"]');
58 shouldBe("myFunction.apply()", '[this, "myFunction", undefined]');
59 shouldBe("myFunction.apply(null)", '[this, "myFunction", undefined]');
60 shouldBe("myFunction.apply(undefined)", '[this, "myFunction", undefined]');
61 shouldBe("myFunction.aliasedApply(myObject, ['arg1'])", '[myObject, "myFunction", "arg1"]');
62 shouldBe("myFunction.aliasedApply()", '[this, "myFunction", undefined]');
63 shouldBe("myFunction.aliasedApply(null)", '[this, "myFunction", undefined]');
64 shouldBe("myFunction.aliasedApply(undefined)", '[this, "myFunction", undefined]');
65 shouldBe("myFunctionWithApply.apply(myObject, ['arg1'])", '[myFunctionWithApply, "myFunctionWithApply.apply", myObject]');
66 shouldBe("myFunctionWithApply.aliasedApply(myObject, ['arg1'])", '[myObject, "myFunctionWithApply", "arg1"]');
67 shouldBe("myFunctionWithApply.apply(myObject, arg1Array)", '[myFunctionWithApply, "myFunctionWithApply.apply", myObject]');
68 shouldBe("forwarder(myFunctionWithApply, myObject, arg1Array)", '[myFunctionWithApply, "myFunctionWithApply.apply", myObject]');
69 shouldBe("myFunctionWithApply.aliasedApply(myObject, arg1Array)", '[myObject, "myFunctionWithApply", "arg1"]');