summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/slice-closed-over-arguments.js
blob: 4a61c4005b2aea823e2a98ff04dd62c7b378b239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function bar(x, y) {
  return x + y;
}

function foo(x, y) {
  function closeOver() { return x; }
  var args = Array.prototype.slice.call(arguments);
  return bar(args[0], args[1]);
}

var sum = 0;
for (var i = 0; i < 100; i++) {
  sum += foo(1, 2);
}
assertEq(sum, 300)