blob: 4de08e50c999f6ec444bdaa2952889325a107d34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
g = newGlobal({newCompartment: true});
g.parent = this;
g.eval("(" + function() {
Debugger(parent)
.onExceptionUnwind = function(frame) {
return frame.eval("");
};
} + ")()");
m = parseModule(` s1 `);
moduleLink(m);
moduleEvaluate(m);
|