summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/fromEntries/uses-define-semantics.js
blob: ae34cf564ffc72aa485ebcec50b92c96edeca7bd (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) 2018 Kevin Gibbons. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Uses [[DefineOwnProperty]] rather than [[Set]].
esid: sec-object.fromentries
features: [Object.fromEntries]
---*/

Object.defineProperty(Object.prototype, 'property', {
  get: function() {
    throw new Test262Error('should not trigger getter on Object.prototype');
  },
  set: function() {
    throw new Test262Error('should not trigger setter on Object.prototype');
  },
});

var result = Object.fromEntries([['property', 'value']]);
assert.sameValue(result['property'], 'value', '');

reportCompare(0, 0);