summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/defineProperty/trap-is-null-target-is-proxy.js
blob: 0beb8e52a069a92cc4d66c0dbf3be296b82412cd (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright (C) 2020 Alexey 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-defineownproperty-p-desc
description: >
  If "defineProperty" trap is null or undefined, [[DefineOwnProperty]] call
  is properly forwarded to [[ProxyTarget]] (which is also a Proxy object).
info: |
  [[DefineOwnProperty]] (P, Desc)

  [...]
  5. Let target be O.[[ProxyTarget]].
  6. Let trap be ? GetMethod(handler, "defineProperty").
  7. If trap is undefined, then
    a. Return ? target.[[DefineOwnProperty]](P, Desc).
features: [Proxy, Reflect]
includes: [propertyHelper.js]
---*/

var plainObject = Object.create(null);
Object.defineProperty(plainObject, "foo", {
  configurable: false,
});

var plainObjectTarget = new Proxy(plainObject, {});
var plainObjectProxy = new Proxy(plainObjectTarget, {
  defineProperty: null,
});

assert.throws(TypeError, function() {
  Object.defineProperty(plainObjectProxy, "foo", {
    configurable: true,
  });
});

Object.defineProperty(plainObjectProxy, "bar", {
  get: function() {
    return 2;
  },
});
assert.sameValue(plainObject.bar, 2);


var regExp = /(?:)/g;
var regExpTarget = new Proxy(regExp, {});
var regExpProxy = new Proxy(regExpTarget, {
  defineProperty: null,
});

assert(
  Reflect.defineProperty(regExpProxy, "lastIndex", {
    writable: false,
  })
);

verifyNotWritable(regExp, "lastIndex");

reportCompare(0, 0);