On 26/02/2015, at 13:10, Leon Arnott wrote:

>  Formerly, named functions always (barring internal var statements etc.) had 
> lexical bindings to themselves,

Not always:

//Yes
a= function f () { return f }; f=null; a()
-> function f()

//No. Look ma, no binding!
function f () { return f }; a=f; f=null; a()
-> null

-- 
( Jorge )();

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

Reply via email to