summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/slice-args-obj-01.js
blob: 6d3a826d8eaf012f1f74cbdb64cdaff67fcedd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function escape(x) { with ({}) {} }

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

function bar(x, y) {
  return x + y;
}

with ({}) {}

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