summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/with/frozen-this-value.js
blob: 73cdc284c2a8874517c08db506403fb24472606b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 works on frozen objects
features: [change-array-by-copy]
includes: [compareArray.js]
---*/

var arr = Object.freeze([0, 1, 2]);
var result = arr.with(1, 3);
assert.compareArray(result, [0, 3, 2]);

var arrayLike = Object.freeze({ length: 3, 0: 0, 1: 1, 2: 2 });
var result2 = Array.prototype.with.call(arrayLike, 1, 3);
assert.compareArray(result2, [0, 3, 2]);

reportCompare(0, 0);