blob: e3f2b2788ca30f55561acc059e4bb94ba0f8b23b (
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 `);
m.declarationInstantiation();
m.evaluation();
|