summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/splice/property-traps-order-with-species.js
blob: 03436e9dca9f55a8e5ba1f2d35a5b915d22a40f8 (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
// Copyright (C) 2018 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.splice
description: >
  Ensure the correct property traps are called on the new array.
features: [Proxy, Symbol.species]
includes: [compareArray.js]
---*/

var log = [];

var a = [0, 1];
a.constructor = {};

a.constructor[Symbol.species] = function(len) {
    return new Proxy(new Array(len), new Proxy({}, {
        get(t, pk, r) {
            log.push(pk);
        }
    }));
};

var r = a.splice(0);

assert.compareArray([
    // Step 11.c.ii: CreateDataPropertyOrThrow(A, ! ToString(k), fromValue).
    "defineProperty",

    // Step 11.c.ii: CreateDataPropertyOrThrow(A, ! ToString(k), fromValue).
    "defineProperty",

    // Step 12: Perform ? Set(A, "length", actualDeleteCount, true).
    "set",
    "getOwnPropertyDescriptor",
    "defineProperty",
], log);

reportCompare(0, 0);