summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/reference/8.7.2-7-s.js
blob: ffc16ca89b0855f78874db96968def5b05d36188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 8.7.2-7-s
description: >
    TypeError isn't thrown if LeftHandSide is a reference to an accessor
    property with setter
---*/

        var _8_7_2_7 = {};
        var _8_7_2_7_bValue = 1;
        Object.defineProperty(_8_7_2_7, "b", {
            get: function () { return _8_7_2_7_bValue; },
            set: function (value) { _8_7_2_7_bValue = value; }
        });

        _8_7_2_7.b = 11;

assert.sameValue(_8_7_2_7.b, 11, '_8_7_2_7.b');

reportCompare(0, 0);