Home | History | Annotate | Download | only in webkit

Lines Matching defs:myFunction

29 var myFunction = function (arg1) { return [this, "myFunction", arg1] };
36 shouldBe("myFunction('arg1')", '[this, "myFunction", "arg1"]');
37 shouldBe("myFunction.call(myObject, 'arg1')", '[myObject, "myFunction", "arg1"]');
38 shouldBe("myFunction.call()", '[this, "myFunction", undefined]');
39 shouldBe("myFunction.call(null)", '[this, "myFunction", undefined]');
40 shouldBe("myFunction.call(undefined)", '[this, "myFunction", undefined]');
41 shouldBe("myFunction.aliasedCall(myObject, 'arg1')", '[myObject, "myFunction", "arg1"]');
42 shouldBe("myFunction.aliasedCall()", '[this, "myFunction", undefined]');
43 shouldBe("myFunction.aliasedCall(null)", '[this, "myFunction", undefined]');
44 shouldBe("myFunction.aliasedCall(undefined)", '[this, "myFunction", undefined]');