summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/toSpliced/immutable.js
blob: 710da9916c4f98bbe1fce9b29f12b3460956c00e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.toSpliced
description: >
  Array.prototype.toSpliced does not mutate its this value
features: [change-array-by-copy]
includes: [compareArray.js]
---*/

var arr = [2, 0, 1];
arr.toSpliced(0, 0, -1);

assert.compareArray(arr, [2, 0, 1]);
assert.notSameValue(arr.toSpliced(0, 0, -1), arr);
assert.notSameValue(arr.toSpliced(0, 1, -1), arr);

reportCompare(0, 0);