| // 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 true successfully when [[Enumerable]] attribute of |
| 'name' is false and [[Configurable]] attribute of 'name' is true, |
| the 'desc' is a generic descriptor which only contains |
| [[Enumerable]] attribute as true, 'name' property is an index data |
| includes: [propertyHelper.js] |
| Object.defineProperty(obj, "0", { |
| Object.defineProperty(obj, "0", { |
| verifyEqualTo(obj, "0", 1001); |
| verifyWritable(obj, "0"); |
| verifyEnumerable(obj, "0"); |
| verifyConfigurable(obj, "0"); |