summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/scalar-replace-array-apply-array-01.js
blob: 0f88843615d01e4d1f0b5db3cfb9d0ca749352e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function escape(x) { with ({}) {} }

function foo(...args) {
  escape(args);
  return bar.apply({}, args);
}

// |foo| must be small enough to be inlinable.
assertEq(isSmallFunction(foo), true);

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);