summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Set/prototype/isDisjointFrom/not-a-constructor.js
blob: bcb7d8f159114c34be531873c66e3f5d9b97159c (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
// |reftest| skip -- set-methods is not supported
// Copyright (C) 2023 Anthony Frehner and Kevin Gibbons. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-set.prototype.isdisjointfrom
description: Set.prototype.isDisjointFrom does not implement [[Construct]], is not new-able
includes: [isConstructor.js]
features: [Reflect.construct, set-methods]
---*/

assert.sameValue(
  isConstructor(Set.prototype.isDisjointFrom),
  false,
  "isConstructor(Set.prototype.isDisjointFrom) must return false"
);

assert.throws(
  TypeError,
  () => {
    new Set.prototype.isDisjointFrom();
  },
  "`new Set.prototype.isDisjointFrom()` throws TypeError"
);

reportCompare(0, 0);