summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/staging/built-ins/Array/prototype/flatMap/callback-with-side-effects.js
blob: 83d205762378e3305c5a3c7a4c6e7017269cc9f1 (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
// Copyright (C) 2024 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.flatMap
description: >
  Array.prototype.flatMap is given a callback that modifies the array being
  iterated.
includes: [compareArray.js]
---*/

(function TestGrow() {
  let array = [0,1,2,3];
  function f(e) {
    array[4] = 42;
    return e;
  }
  assert.compareArray(array.flatMap(f), [0,1,2,3]);
})();

(function TestShrink() {
  let array = [0,1,2,3];
  function f(e) {
    array.length = 3;
    return e;
  }
  assert.compareArray(array.flatMap(f), [0,1,2]);
})();

reportCompare(0, 0);