| // 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 Arguments object, 'P' is an |
| array index named data property of 'O' but not defined in |
| [[ParameterMap]] of 'O', test TypeError is thrown when updating |
| the [[Value]] attribute value of 'P' which is not writable and not |
| configurable (10.6 [[DefineOwnProperty]] step 4) |
| includes: [propertyHelper.js] |
| Object.defineProperty(arg, "0", { |
| Object.defineProperties(arg, { |
| $ERROR("Expected an exception."); |
| verifyEqualTo(arg, "0", 0); |
| verifyNotWritable(arg, "0"); |
| verifyNotEnumerable(arg, "0"); |
| verifyNotConfigurable(arg, "0"); |
| if (!(e instanceof TypeError)) { |
| $ERROR("Expected TypeError, got " + e); |