Status: New
Owner: ----

New issue 3979 by [email protected]: Generator instance's `prototype` property descriptor is incorrect
https://code.google.com/p/v8/issues/detail?id=3979

Version: 22d62cea4d4d01d30286411cd11a6f3e15083cc0 (Thu Mar 19 08:04:47 2015 -0700)
OS: Ubuntu Linux
Architecture: x64

ES6 25.2.4.2 [1] includes the following text in its description of the
`prototype` property of generator function instances:

This property has the attributes { [[Writable]]: false, [[Enumerable]]:
false, [[Configurable]]: true }.

but this is not the case in V8 today:

    d8> Object.getOwnPropertyDescriptor(function* g() {}, 'prototype')
{value: [object Generator], writable: true, enumerable: false, configurable: false}

[1] http://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorfunction-instances-prototype

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to