| // Copyright (c) 2012 Ecma International. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Object.defineProperties - 'O' is an Array, 'P' is an array index |
| named property, 'desc' is accessor descriptor, test updating all |
| attribute values of 'P' (15.4.5.1 step 4.c) |
| includes: [propertyHelper.js] |
| Object.defineProperties(arr, { |
| var setFun = function (value) { |
| arr.setVerifyHelpProp = value; |
| var getFun = function () { |
| Object.defineProperties(arr, { |
| verifyEqualTo(arr, "0", getFun()); |
| verifyWritable(arr, "0", "setVerifyHelpProp"); |
| verifyNotEnumerable(arr, "0"); |
| verifyNotConfigurable(arr, "0"); |