Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / annexB / built-ins / String / prototype / fixed / not-a-constructor.js
blob5199152f24cbbbf02831242ea8edf28fdb258f1a
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   String.prototype.fixed 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
16   ...
17   7. If IsConstructor(constructor) is false, throw a TypeError exception.
18   ...
19 includes: [isConstructor.js]
20 features: [Reflect.construct, arrow-function]
21 ---*/
23 assert.sameValue(
24   isConstructor(String.prototype.fixed),
25   false,
26   'isConstructor(String.prototype.fixed) must return false'
29 assert.throws(TypeError, () => {
30   new String.prototype.fixed();
31 });
34 reportCompare(0, 0);