Lines Matching refs:call
17 try { functionBind.call(nonFunctions[i]); } catch (ex) {
28 func: functionBind.call(function () {
29 args = Array.prototype.slice.call(arguments);
35 st.equal(context, getCurrentContext.call());
42 func: functionBind.call(function () {
43 args = Array.prototype.slice.call(arguments);
49 st.equal(context, getCurrentContext.call());
56 func: functionBind.call(function () {
57 args = Array.prototype.slice.call(arguments);
62 st.equal(context, getCurrentContext.call(), 'returned context is namespaced context');
70 func: functionBind.call(function () {
71 args = Array.prototype.slice.call(arguments);
76 st.equal(context, getCurrentContext.call(), 'returned context is namespaced context');
87 var Constructor = functionBind.call(thunkify(expectedReturnValue), null);
94 var Constructor = functionBind.call(thunkify(42), null);
104 var B = functionBind.call(A, null, 'B');
123 func: functionBind.call(function () {
124 args = Array.prototype.slice.call(arguments);
138 func: functionBind.call(function () {
139 args = Array.prototype.slice.call(arguments);
153 func: functionBind.call(function () {
154 args = Array.prototype.slice.call(arguments);
160 st.notEqual(context, getCurrentContext.call(), 'returned context is not lexical context');
169 func: functionBind.call(function () {
170 args = Array.prototype.slice.call(arguments);
176 st.notEqual(context, getCurrentContext.call(), 'returned context is not lexical context');
184 Func: functionBind.call(function (arg) {
197 Func: functionBind.call(function () {
212 var subject = functionBind.call(function (a, b, c) { return a + b + c; });
219 var subject = functionBind.call(function (a, b, c) { return a + b + c; }, {});
226 var subject = functionBind.call(function (a, b, c) { return a + b + c; }, undefined, 1);
233 var subject = functionBind.call(function (a, b, c) { return a + b + c; }, {}, 1);
240 … var subject = functionBind.call(function (a, b, c) { return a + b + c; }, undefined, 1, 2, 3, 4);
247 var subject = functionBind.call(function (a, b, c) { return a + b + c; }, {}, 1, 2, 3, 4);