Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / String / prototype / isWellFormed / not-a-constructor.js
blob6943b3c2e8087b279d443a74f23b077668843258
1 // Copyright (C) 2022 Jordan Harband. 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   String.prototype.includes 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: [String.prototype.isWellFormed, Reflect.construct]
22 ---*/
24 assert.sameValue(
25   isConstructor(String.prototype.isWellFormed),
26   false,
27   'isConstructor(String.prototype.isWellFormed) must return false'
30 assert.throws(TypeError, function () {
31   new String.prototype.isWellFormed();
32 }, '`new String.prototype.isWellFormed()` throws TypeError');
34 reportCompare(0, 0);