Status: Accepted
Owner: [email protected]
CC: [email protected]
Labels: Type-Bug Priority-Medium ES5

New issue 1872 by [email protected]: Changing attributes on a foreign callback property does not work.
http://code.google.com/p/v8/issues/detail?id=1872

This issue is a follow-up on issue 1530 when attributes are changed. For simplicity the regression test for this issue should be added to regress-1530.js as well. The following snippet will reproduce the issue.

var f = function () {};
var x = { foo: 'bar' };
Object.defineProperty(f, 'prototype', { value: x, writable: false });
print(f.prototype.foo);


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

Reply via email to