blob: 6acab627c3e93ae929356ceb59828a6bc8cc944e (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
load("test-common.js");
try {
assert(Object.isExtensible(new Proxy({}, { isExtensible: null })) === true);
assert(Object.isExtensible(new Proxy({}, { isExtensible: undefined })) === true);
assert(Object.isExtensible(new Proxy({}, {})) === true);
let o = {};
let p = new Proxy(o, {
isExtensible(target) {
assert(target === o);
return true;
}
});
Object.isExtensible(p);
// Invariants
o = {};
p = new Proxy(o, {
isExtensible(proxyTarget) {
assert(proxyTarget === o);
return true;
},
});
assert(Object.isExtensible(p) === true);
Object.preventExtensions(o);
assertThrowsError(() => {
Object.isExtensible(p);
}, {
error: TypeError,
message: "Proxy handler's isExtensible trap violates invariant: return value must match the target's extensibility",
});
p = new Proxy(o, {
isExtensible(proxyTarget) {
assert(proxyTarget === o);
return false;
},
});
assert(Object.isExtensible(p) === false);
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}
|