Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperty / 15.2.3.6-4-298-1.js
blob9cb976b0fde3b2d9c5d8bc0a244409b9c77be005
1 // Copyright (c) 2012 Ecma International.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es5id: 15.2.3.6-4-298-1
6 description: >
7     Object.defineProperty - 'O' is an Arguments object of a function
8     that has formal parameters, 'name' is own accessor property of 'O'
9     which is also defined in [[ParameterMap]] of 'O', test TypeError
10     is thrown when updating the [[Set]] attribute value of 'name'
11     which is defined as non-configurable (10.6 [[DefineOwnProperty]]
12     steps 4 and 5a)
13 includes: [propertyHelper.js]
14 ---*/
16 (function(a, b, c) {
17   function getFunc() {
18     return 10;
19   }
20   Object.defineProperty(arguments, "0", {
21     get: getFunc,
22     set: undefined,
23     enumerable: false,
24     configurable: false
25   });
27   function setFunc(value) {
28     this.setVerifyHelpProp = value;
29   }
30   try {
31     Object.defineProperty(arguments, "0", {
32       set: setFunc
33     });
34     throw new Test262Error("Expected an exception.");
35   } catch (e) {
36     if (a !== 0) {
37       throw new Test262Error('Expected a === 0, actually ' + a);
38     }
40     verifyEqualTo(arguments, "0", getFunc());
42     verifyNotEnumerable(arguments, "0");
44     verifyNotConfigurable(arguments, "0");
46     if (!(e instanceof TypeError)) {
47       throw new Test262Error("Expected TypeError, got " + e);
48     }
50   }
51 }(0, 1, 2));
53 reportCompare(0, 0);