summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/harness/isConstructor.js
blob: f66cf9f57ab5d6d62de5142f8b3533ca29e20c8e (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.sameValue(isConstructor(), false);
assert.sameValue(isConstructor(undefined), false);
assert.sameValue(isConstructor(null), false);
assert.sameValue(isConstructor(123), false);
assert.sameValue(isConstructor(true), false);
assert.sameValue(isConstructor(false), false);
assert.sameValue(isConstructor("string"), false);

assert.sameValue(isConstructor({}), false);
assert.sameValue(isConstructor([]), false);

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);