summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/with/immutable.js
blob: 04c1621dff4e2ab5197a3642783bb0bc6b6b5031 (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.with
description: >
  Array.prototype.with does not mutate its this value
features: [change-array-by-copy]
includes: [compareArray.js]
---*/

var arr = [0, 1, 2];
arr.with(1, 3);

assert.compareArray(arr, [0, 1, 2]);
assert.notSameValue(arr.with(1, 3), arr);
assert.notSameValue(arr.with(1, 1), arr);

reportCompare(0, 0);