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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// |reftest| skip-if(!this.hasOwnProperty('WeakRef')) -- WeakRef 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-weak-ref-target
description: >
Throws a TypeError if target is not Object
info: |
WeakRef ( target )
1. If NewTarget is undefined, throw a TypeError exception.
2. If Type(target) is not Object, throw a TypeError exception.
...
features: [WeakRef]
---*/
assert.sameValue(
typeof WeakRef, 'function',
'typeof WeakRef is function'
);
assert.throws(TypeError, function() {
new WeakRef();
}, 'implicit undefined');
assert.throws(TypeError, function() {
new WeakRef(undefined);
}, 'explicit undefined');
assert.throws(TypeError, function() {
new WeakRef(null);
}, 'null');
assert.throws(TypeError, function() {
new WeakRef(1);
}, 'number');
assert.throws(TypeError, function() {
new WeakRef('Object');
}, 'string');
var s = Symbol();
assert.throws(TypeError, function() {
new WeakRef(s);
}, 'symbol');
assert.throws(TypeError, function() {
new WeakRef(true);
}, 'Boolean, true');
assert.throws(TypeError, function() {
new WeakRef(false);
}, 'Boolean, false');
reportCompare(0, 0);
|