Where there any attempts to allow factory functions the ability to assume the name of the binding they are assigned to?
Consider the following:
function factory () { return function () {} }
var foo = factory()
console.assert(foo.name === 'foo')
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

