1 // Copyright (c) 2012 Ecma International. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
7 Object.defineProperty - 'O' is an Array, 'name' is an array index
8 named property, 'name' is accessor property and 'desc' is accessor
9 descriptor, and the [[Configurable]] attribute value of 'name' is
10 false, test TypeError is thrown if the [[Set]] field of 'desc' is
11 present, and the [[Set]] field of 'desc' and the [[Set]] attribute
12 value of 'name' are two objects which refer to the different
13 objects (15.4.5.1 step 4.c)
14 includes: [propertyHelper.js]
19 function setFunc(value) {
20 arrObj.setVerifyHelpProp = value;
22 Object.defineProperty(arrObj, "1", {
27 Object.defineProperty(arrObj, "1", {
30 throw new Test262Error("Expected an exception.");
33 verifyWritable(arrObj, "1", "setVerifyHelpProp");
35 verifyNotEnumerable(arrObj, "1");
37 verifyNotConfigurable(arrObj, "1");
39 if (!(e instanceof TypeError)) {
40 throw new Test262Error("Expected TypeError, got " + e);