Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Function / prototype / toString / not-a-constructor.js
blobb13c0c51a27b95d24689d2ee4405b2d67ce2f714
1 // Copyright (C) 2020 Rick Waldron. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-ecmascript-standard-built-in-objects
6 description: >
7   Function.prototype.toString does not implement [[Construct]], is not new-able
8 info: |
9   ECMAScript Function Objects
11   Built-in function objects that are not identified as constructors do not
12   implement the [[Construct]] internal method unless otherwise specified in
13   the description of a particular function.
15   sec-evaluatenew
17   ...
18   7. If IsConstructor(constructor) is false, throw a TypeError exception.
19   ...
20 includes: [isConstructor.js]
21 features: [Reflect.construct, arrow-function]
22 ---*/
24 assert.sameValue(
25   isConstructor(Function.prototype.toString),
26   false,
27   'isConstructor(Function.prototype.toString) must return false'
30 assert.throws(TypeError, () => {
31   new Function.prototype.toString();
32 }, '`new Function.prototype.toString()` throws TypeError');
34 var toString = Function.prototype.toString;
35 assert.throws(TypeError, () => {
36   new toString;
37 }, '`new toString` throws TypeError');
39 reportCompare(0, 0);