summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/array-flatMap-species.js
blob: d4159b480177cd5347a891e83411a8112cd801b2 (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
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --harmony-array-flat

{
  class MyArray extends Array {
    static get [Symbol.species]() {
      return Array;
    }
  }

  const wannabe = new MyArray();
  const result = wannabe.flatMap(x => [x, x]);
  assertEquals(false, result instanceof MyArray);
  assertEquals(true, result instanceof Array);
}

{
  class MyArray extends Array {
    static get [Symbol.species]() {
      return this;
    }
  }

  const wannabe = new MyArray();
  const result = wannabe.flatMap(x => [x, x]);
  assertEquals(true, result instanceof MyArray);
  assertEquals(true, result instanceof Array);
}