summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/harness/isConstructor.js
blob: 845750e270c04cbdf1e8d6a5945432aaf4ee9ef3 (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
32
33
34
// Copyright (C) 2017 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Including isConstructor.js will expose one function:

      isConstructor

includes: [isConstructor.js]
features: [generators, Reflect.construct]
---*/

assert.sameValue(typeof isConstructor, "function");

assert.throws(Test262Error, () => isConstructor(), "no argument");
assert.throws(Test262Error, () => isConstructor(undefined), "undefined");
assert.throws(Test262Error, () => isConstructor(null), "null");
assert.throws(Test262Error, () => isConstructor(123), "number");
assert.throws(Test262Error, () => isConstructor(true), "boolean - true");
assert.throws(Test262Error, () => isConstructor(false), "boolean - false");
assert.throws(Test262Error, () => isConstructor("string"), "string");

assert.throws(Test262Error, () => isConstructor({}), "Object instance");
assert.throws(Test262Error, () => isConstructor([]), "Array instance");

assert.sameValue(isConstructor(function(){}), true);
assert.sameValue(isConstructor(function*(){}), false);
assert.sameValue(isConstructor(() => {}), false);

assert.sameValue(isConstructor(Array), true);
assert.sameValue(isConstructor(Array.prototype.map), false);

reportCompare(0, 0);