blob: 18cce796be3641eb85d6dcc071a8ec5bd3eafc4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
g = newGlobal({newCompartment: true});
g.parent = this;
g.eval("new Debugger(parent).onExceptionUnwind = function () {}");
enableGeckoProfiling();
try {
enableSingleStepProfiling();
} catch(e) {
quit();
}
f();
f();
function $ERROR() {
throw Error;
}
function f() {
try {
$ERROR()
} catch (ex) {}
}
|