| // Copyright (c) 2012 Ecma International. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Object.defineProperty - Update [[Enumerable]] attribute of 'name' |
| property to false successfully when [[Enumerable]] and |
| [[Configurable]] attributes of 'name' property are true, the |
| 'desc' is a generic descriptor which contains [[Enumerable]] |
| attribute as false and [[Configurable]] attribute as true, 'name' |
| property is an index data property (8.12.9 step 8) |
| includes: [propertyHelper.js] |
| Object.defineProperty(obj, "0", { |
| Object.defineProperty(obj, "0", { |
| verifyEqualTo(obj, "0", 1001); |
| verifyWritable(obj, "0"); |
| verifyNotEnumerable(obj, "0"); |
| verifyConfigurable(obj, "0"); |