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

/*---
esid: sec-array.fromasync
description: Array.fromAsync is not a constructor
info: |
  Built-in function objects that are not identified as constructors do not
  implement the [[Construct]] internal method unless otherwise specified in the
  description of a particular function.
includes: [isConstructor.js]
features: [Array.fromAsync, Reflect.construct]
---*/

assert(!isConstructor(Array.fromAsync), "Array.fromAsync is not a constructor");

assert.throws(TypeError, () => new Array.fromAsync(), "Array.fromAsync throws when constructed");

reportCompare(0, 0);