Status: New
Owner: ----

New issue 1240 by bga.email: `Object#__defineSetter__` drops `configurable` to `true` what allows redefine properties with `configurable = false`
http://code.google.com/p/v8/issues/detail?id=1240

Chromium 11.0.656.0 (73203)
`
var a = {};
Object.defineProperty(a, 'b', {get: function _a(){}, configurable: false});
a.__defineGetter__('b', function _b(){});
console.log(Object.getOwnPropertyDescriptor(a, 'b'));
`

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

Reply via email to