summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/profiler/bug1233921.js
blob: def8b7c7e3885154622890a4d2e5795747aa2da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
g = newGlobal();
g.parent = this;
g.eval("new Debugger(parent).onExceptionUnwind = function () {}");
enableSPSProfiling();
try {
    enableSingleStepProfiling();
} catch(e) {
    quit();
}
f();
f();
function $ERROR() {
    throw Error;
}
function f() {
    try {
        $ERROR()
    } catch (ex) {}
}