summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/inline/scripted-06.js
blob: 074bb520178a8b1cac2aeff9b3c0ba7a69e319c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function popper(a) {
  return a.pop();
}

function foo(x) {
  for (var i = 0; i < 10; i++) {
    var q = popper(x);
    if (i < 5)
      assertEq(q, 5 - i);
    else
      assertEq(q, undefined);
  }
  return q;
}

var q = foo([1,2,3,4,5]);
assertEq(q, undefined);