| // 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 only contains [Enumerable]] |
| attribute as false and 'name' property is an index accessor |
| includes: [propertyHelper.js] |
| obj.verifySetFunction = "data"; |
| var get_func = function () { |
| return obj.verifySetFunction; |
| var set_func = function (value) { |
| obj.verifySetFunction = value; |
| Object.defineProperty(obj, "0", { |
| Object.defineProperty(obj, "0", { |
| verifyEqualTo(obj, "0", get_func()); |
| verifyWritable(obj, "0", "verifySetFunction"); |
| verifyNotEnumerable(obj, "0"); |
| verifyConfigurable(obj, "0"); |