blob: 3245c1cff37afdc3098e039fc1f6417f4ade9d7a (
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
50
51
|
// Test trying to call cleanupSome recursively in callback.
// 0: Initial state.
// 1: Attempt recursive calls.
// 2: After recursive calls.
let state = 0;
let registry = new FinalizationRegistry(x => {
if (state === 0) {
state = 1;
try {
registry.cleanupSome();
} catch (e) {
// Pass the test if any error was thrown.
return;
} finally {
state = 2;
}
throw new Error("expected stack overflow error");
}
if (state === 1) {
registry.cleanupSome();
}
});
// Attempt to find the maximum supported stack depth.
var stackSize = 0;
function findStackSize(i) {
try {
stackSize = i;
findStackSize(i + 1);
} catch (e) {
return;
}
}
findStackSize(0);
// Multiply the calculated stack size by some factor just to be on the safe side.
const exceedStackDepthLimit = stackSize * 5;
let values = [];
for (let i = 0; i < exceedStackDepthLimit; ++i) {
let v = {};
registry.register(v, i);
values.push(v);
}
values.length = 0;
gc();
drainJobQueue();
|