blob: ebdef99c370e41945b45ff51e664f053706c0983 (
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
|
// |reftest| skip-if(!this.hasOwnProperty('FinalizationRegistry')) -- FinalizationRegistry is not enabled unconditionally
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-finalization-registry-target
description: >
Throws a TypeError if NewTarget is undefined.
info: |
FinalizationRegistry ( cleanupCallback )
1. If NewTarget is undefined, throw a TypeError exception.
2. If IsCallable(cleanupCallback) is false, throw a TypeError exception.
...
features: [FinalizationRegistry]
---*/
assert.sameValue(
typeof FinalizationRegistry, 'function',
'typeof FinalizationRegistry is function'
);
assert.throws(TypeError, function() {
FinalizationRegistry();
});
assert.throws(TypeError, function() {
FinalizationRegistry(function() {});
});
reportCompare(0, 0);
|