| // Copyright (c) 2012 Ecma International. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Object.defineProperty will update [[Value]] attribute of indexed |
| property 'P'successfully when [[Configurable]] attribute is false, |
| [[Writable]] attribute is true and 'O' is an Arguments object |
| includes: [propertyHelper.js] |
| Object.defineProperty(obj, "0", { |
| Object.defineProperty(obj, "0", { |
| verifyEqualTo(obj, "0", 1002); |
| verifyWritable(obj, "0"); |
| verifyNotEnumerable(obj, "0"); |
| verifyNotConfigurable(obj, "0"); |