summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/assign/strings-and-symbol-order-proxy.js
blob: c4523a4df59a2139d5ea95039e44a491f6bc4bf2 (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
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.assign
description: >
  Proxy keys are iterated in order they were provided by "ownKeys" trap.
info: |
  Object.assign ( target, ...sources )

  [...]
  4. For each element nextSource of sources, in ascending index order, do
    a. If nextSource is neither undefined nor null, then
      [...]
      ii. Let keys be ? from.[[OwnPropertyKeys]]().
      iii. For each element nextKey of keys in List order, do
        1. Let desc be ? from.[[GetOwnProperty]](nextKey).

  [[OwnPropertyKeys]] ( )

  [...]
  7. Let trapResultArray be ? Call(trap, handler, « target »).
  8. Let trapResult be ? CreateListFromArrayLike(trapResultArray, « String, Symbol »).
  [...]
  23. Return trapResult.
features: [Proxy, Symbol]
includes: [compareArray.js]
---*/

var getOwnKeys = [];
var ownKeysResult = [Symbol(), "foo", "0"];
var proxy = new Proxy({}, {
  getOwnPropertyDescriptor: function(_target, key) {
    getOwnKeys.push(key);
  },
  ownKeys: function() {
    return ownKeysResult;
  },
});

Object.assign({}, proxy);
assert.compareArray(getOwnKeys, ownKeysResult);

reportCompare(0, 0);