| // 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 own |
| data property of 'O' which is also defined in [[ParameterMap]] of |
| 'O', test TypeError is thrown when updating the [[Value]] |
| attribute value of 'P' whose writable and configurable attributes |
| are false (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"); |
| verifyEnumerable(arg, "0"); |
| verifyNotConfigurable(arg, "0"); |
| if (!(e instanceof TypeError)) { |
| $ERROR("Expected TypeError, got " + e); |