On 10/11/07, Garrett Smith <[EMAIL PROTECTED]> wrote: > If an object accepts arguments, it is callable, and if it is callable, > it supports ,call(), right?
Assuming you mean "has itself a Callable member named 'call'", then I think the answer is no -- being Callable means having a [[Call]] operation defined on it, but that operation need not be reflected as a method on the function. You'll be able to use function-call syntax on it, though, which is what typically invokes the [[Call]] operation. Mike (long-time listener, first-time caller) _______________________________________________ Es4-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es4-discuss
