1 // Copyright (c) 2012 Ecma International. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
5 es5id: 15.2.3.6-4-324-1
7 Object.defineProperty - 'O' is an Arguments object of a function
8 that has formal parameters, 'P' is own accessor property of 'O',
9 test TypeError is thrown when updating the [[Configurable]]
10 attribute value of 'P' which is not configurable (10.6
11 [[DefineOwnProperty]] step 4)
12 includes: [propertyHelper.js]
16 function setFunc(value) {
17 this.genericPropertyString = value;
19 Object.defineProperty(arguments, "genericProperty", {
24 Object.defineProperty(arguments, "genericProperty", {
27 throw new Test262Error("Expected an exception.");
29 verifyWritable(arguments, "genericProperty", "genericPropertyString");
31 verifyNotEnumerable(arguments, "genericProperty");
33 verifyNotConfigurable(arguments, "genericProperty");
35 if (!(e instanceof TypeError)) {
36 throw new Test262Error("Expected TypeError, got " + e);