Comment #3 on issue 935 by [email protected]: function.prototype's property descriptor
http://code.google.com/p/v8/issues/detail?id=935
It seems they expect a function's "prototype" property to be enumerable. The ES5 specification requires it to be non-enumerable (section 15.3.5.2: "This property has the attribute { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: false }. "). We match the specification in this case. -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
