summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/slice-closed-over-arguments-strict.js
blob: 71815f0b439afacc4dca03bf12ee49dc88a51f33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"use strict";

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)