Comment #1 on issue 1992 by [email protected]: Indexed properties should throw in strict mode
http://code.google.com/p/v8/issues/detail?id=1992

This code illustrates the bug:
var x = [1,2,3];
Object.freeze(x);
(function () { "use strict"; x.reverse(); })(); // Should throw, but does not.

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to