summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/nativemulti.js
blob: d611586970c0e6c4817d11e7c3e06b0b4d9c6d68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Recompilation that requires patching the same native stub multiple times. */

var first = 0;
var second = 0;

function foreachweird(a, f, vfirst, vsecond)
{
  a.forEach(f);
  assertEq(first, vfirst);
  assertEq(second, vsecond);
}

function weird() {
  eval("first = 'one';");
  eval("second = 'two';");
}

foreachweird([0], function() {}, 0, 0);
foreachweird([0], function() {}, 0, 0);
foreachweird([0], weird, 'one', 'two');