summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1057571.js
blob: 740febd3e6fdeb4181ca41f06a0f1d82df00b372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
test = (function () {
  function f() {
    [1,2,3,4,5];
  };
  return "var obj = { x : 2 };" + f.toString() + "; f()";
})();
evalWithCache(test, {});
function evalWithCache(code, ctx) {
  code = cacheEntry(code);
  ctx.global = newGlobal();
  ctx.isRunOnce = true;
  var res1 = evaluate(code, Object.create(ctx, {saveIncrementalBytecode: { value: true } }));
  var res2 = evaluate(code, Object.create(ctx, {loadBytecode: { value: true }, saveIncrementalBytecode: { value: true } }));
}