summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/reference/8.7.2-4-s-strict.js
blob: 391146cf0bd920fdb49163bffaba9bccd61aef15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict';
// 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-4-s
description: >
    Strict Mode - TypeError is thrown if LeftHandSide is a reference
    to an accessor property with no setter
flags: [onlyStrict]
---*/

        var _8_7_2_4 = {};
        var _8_7_2_4_bValue = 1;
        Object.defineProperty(_8_7_2_4, "b", {
            get: function () { return _8_7_2_4_bValue; }
        });
assert.throws(TypeError, function() {
            _8_7_2_4.b = 11;
});

reportCompare(0, 0);