On Tue, Aug 30, 2011 at 11:46 PM, David Bruant <[email protected]>wrote:

>  Le 30/08/2011 21:59, Lasse Reichstein a écrit :
>
> A reliable .call could probably also achieve the same.
>
> A reliable .call could be achieved by composing a reliable .bind and the
> function call syntax.
>

True. The Bind operation is the currying of the Call operation.

Ah, that got me thinking. I can do
  var CallFunction = Function.prototype.call.bind(Function.prototype.call);
since bind does give a different way to set the this-object for a call. This
can be done once, before anybody gets to mangle the builtins, and can be
stored for afterwards. Excellent!

/L
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to