summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/arguments-object/10.6-11-b-1.js
blob: 10c84fdda41cbe70f34bc0dc464ac9f904d92548 (plain)
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
37
38
39
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 10.6-11-b-1
description: >
    Arguments Object has index property '0' as its own property, it
    shoulde be writable, enumerable, configurable and does not invoke
    the setter defined on Object.prototype[0] (Step 11.b)
includes: [propertyHelper.js]
---*/

var data = "data";
var getFunc = function () {
    return data;
};

var setFunc = function (value) {
    data = value;
};

Object.defineProperty(Object.prototype, "0", {
    get: getFunc,
    set: setFunc,
    configurable: true
});

var argObj = (function () { return arguments })(1);

verifyProperty(argObj, "0", {
    value: 1,
    writable: true,
    enumerable: true,
    configurable: true,
});

assert.sameValue(data, "data", 'data');

reportCompare(0, 0);