Lines Matching defs:apply
20 var handler = { apply (target) {
49 apply: function (target, thisArg, argumentsList) {
123 Reflect.apply (proxy, apply_receiver, [1,2,3,4]);
135 apply: function (target, this_arg, args) {
136 target.apply (this_arg, args);
143 Reflect.apply (proxy, {rec:1}, [1,2]);
158 apply: function (target, this_arg, args) {
159 target.apply (this_arg, args);
180 apply: function (target, this_arg, args) {
181 target.apply (this_arg, args);
209 apply: function (target, this_arg, args) {
210 target.apply (this_arg, args);
227 apply: 'non callable trap'
247 apply: null
262 var proxy = new Proxy(target, { apply() { assert (false) } });
278 Reflect.apply(proxy, null, []);
285 Reflect.apply(proxy, { proxy }, []);
292 Reflect.apply(proxy, { proxy }, []);
299 Function.prototype.call.apply (proxy, [null]);
306 Function.prototype.apply.apply (proxy, [null, []]);
312 var proxy_to_proxy = new Proxy (proxy, { apply() { assert (false); } });
329 Reflect.apply (proxy_to_proxy, null, []);
336 Reflect.apply (proxy_to_proxy, { proxy }, []);
343 Function.prototype.call.apply (proxy_to_proxy, [null]);
350 Function.prototype.apply.apply (proxy_to_proxy, [null, []]);