summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-not-writable-targetdesc-is-writable.js
blob: bc4537b6517041de399b0dc279a9c485234b2745 (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
40
41
42
// Copyright (C) 2019 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-proxy-object-internal-methods-and-internal-slots-getownproperty-p
description: >
    Throws a TypeError exception if resultDesc is both non-configurable and
    non-writable, while targetDesc is writable.
info: |
    [[GetOwnProperty]] (P)

    ...
    17. If resultDesc.[[Configurable]] is false, then
        ...
        b. If resultDesc has a [[Writable]] field and resultDesc.[[Writable]] is
        false, then
            i. If targetDesc.[[Writable]] is true, throw a TypeError exception.
    ...
features: [Proxy, proxy-missing-checks]
---*/

var trapCalls = 0;
var p = new Proxy({}, {
  getOwnPropertyDescriptor: function(t, prop) {
    Object.defineProperty(t, prop, {
      configurable: false,
      writable: true,
    });

    trapCalls++;
    return {
      configurable: false,
      writable: false,
    };
  },
});

assert.throws(TypeError, function() {
  Object.getOwnPropertyDescriptor(p, "prop");
});
assert.sameValue(trapCalls, 1);

reportCompare(0, 0);