test262/test/harness/isConstructor.js
jugglinmike 5093c3037d
Reject exceptional input to isConstructor (#3748)
* Reject exceptional input to `isConstructor`

Prior to this commit, the `isConstructor` harness function would return
`false` when invoked with a value that lacked a [[Call]] internal
method. While it's true that such values are not constructors, there are
no tests which benefit from using `isConstructor` to make such an
assertion.

Extend `isConstructor` to throw an error when invoked with a
non-function object. Update a test which was misleadingly invoking the
function with the value `undefined`.

* fixup! Reject exceptional input to `isConstructor`
2022-12-15 22:53:34 -05:00

33 lines
1.2 KiB
JavaScript

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