Comment #3 on issue 2407 by [email protected]: Object.isFrozen() throws when called on a function whose caller is strict
http://code.google.com/p/v8/issues/detail?id=2407
Note that Object.freeze() has a similar problem:
function nonStrict() { Object.freeze(nonStrict); }
function strict() { "use strict"; nonStrict() }
strict();
throws as well (and doesn't in other engines).
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
