forked from tc39/test262
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10.6-7-1.js
More file actions
36 lines (29 loc) · 791 Bytes
/
Copy path10.6-7-1.js
File metadata and controls
36 lines (29 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 10.6-7-1
description: >
Arguments Object has length as its own property and does not
invoke the setter defined on Object.prototype.length (Step 7)
includes: [propertyHelper.js]
---*/
var data = "data";
var getFunc = function () {
return 12;
};
var setFunc = function (value) {
data = value;
};
Object.defineProperty(Object.prototype, "length", {
get: getFunc,
set: setFunc,
configurable: true
});
var argObj = (function () { return arguments })();
verifyProperty(argObj, "length", {
value: 0,
writable: true,
enumerable: false,
configurable: true,
});
assert.sameValue(data, "data", 'data');