On Thu, 2008-01-03 at 20:41 +0100, Igor Bukanov wrote:
> let (function f() { ... f()... }) { ... }

I would write that as follows:

    let (f = function() { arguments.callee(); } ) {
        f();
    }

Are inline named functions a necessity for let expressions? My feeling
is no, and that the name bears no meaning within the scope of the let
expression.


Cheers,

--
Nathan de Vries

Attachment: smime.p7s
Description: S/MIME cryptographic signature

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

Reply via email to