Status: New
Owner: ----
New issue 3607 by [email protected]: Symbol + Object.create /
Object.defineProperties
https://code.google.com/p/v8/issues/detail?id=3607
var o = {}
, s = Symbol();
o[s] = {value: 42};
console.log(Object.getOwnPropertyDescriptor(o, s).enumerable); // => true
var x = {};
Object.defineProperties(x, o);
console.log(s in x); // => false
ES5: Let names be an internal list containing the names of each enumerable
own property of props.
ES6: Let keys be the result of calling the [[OwnPropertyKeys]] internal
method of props.
--
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.