blob: c64ef0a78ce2bb12691c0cc1a45417ab63e8cc05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// |jit-test| error: ReferenceError
// Adapted from randomly chosen test: js/src/jit-test/tests/debug/Frame-onPop-error-scope-unwind-02.js
var g = newGlobal();
var dbg = new Debugger(g);
dbg.onEnterFrame = function(f) {
(f.environment.getVariable("e") == 0);
};
g.eval("" + function f() {
try {
throw 42;
} catch (e) {
noSuchFn(e);
}
});
g.eval("f();");
|