summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug563000/eif-call-newvar.js
blob: 635b5bb99f2a29e10b7b043a70d291b40dc37770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
load(libdir + "evalInFrame.js");

function callee() {
  evalInFrame(1, "var x = 'success'");
}
function caller(code) {
  eval(code);
  callee();
  return x;
}
assertEq(caller('var y = "ignominy"'), "success");
assertEq(typeof x, "undefined");