summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-eval-30.js
blob: f99912c452b70f6bbd4a577ba0bacc932361ee04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Test that Debugger.Frame.eval correctly throws on redeclaration.

load(libdir + "evalInFrame.js");

let x;

function f() {
  evalInFrame(1, "var x;");
}

var log = "";

try {
  f();
} catch (e) {
  log += "e";
}

assertEq(log, "e");