summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug656753.js
blob: b897c7d0951c17f06d481ed7adf9f15068e08bc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

var global = 0;

function foo(i) {
  global = i;
  if (global == 8) {
    eval("global = 'three'");
    throw global;
  }
}

var caught = false;
try {
  for (var i = 0; i < 10; i++) {
    Array.map([i], foo);
 }
} catch (e) { caught = true; }

assertEq(caught, true);
assertEq(global, 'three');