blob: 1968f585006b232e75ae2fabc460d80c2350a2ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
const g1 = newGlobal({});
const g2 = newGlobal(newGlobal);
g1.g2obj = g2.eval("new Object");
g1.evaluate(`
const global = this;
function capture(shouldIgnoreSelfHosted = true) {
return captureFirstSubsumedFrame(global.g2obj, shouldIgnoreSelfHosted);
}
(function iife1() {
const captureTrueStack = capture(true);
}());
`, {
});
|