summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/args2c.js
blob: 9e83a424dc08938a6cd2b8e36f0dd4a96e6ea3a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
actual = '';
expected = 'g 0 0,g 1 2,g 2 4,g 3 6,g 4 8,';

function g(x, y) {
  appendToActual('g ' + x + ' ' + y);
  //appendToActual('g ' + x + ' ' + y);
  //appendToActual('g ' + y);
}

function f() {
  g.apply(this, arguments);
}

for (var i = 0; i < 5; ++i) {
  f(i, i*2);
}


assertEq(actual, expected)