summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/closures/t003.js
blob: 4cbf6cf34b37371d6ccf2693171128cdd7bed10a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
actual = '';
expected = '54,54,54,';

function k(a, b, f_arg, c) { 
  for (var i = 0; i < 5; ++i) {
    f_arg(i + a);
  }
}

function t(a, b) {
  var x = 1;
  k(50, 100, function (i) { x = i; }, 200);
  appendToActual(x);
}

t(1);
t(2, 3);
t(4, 5, 6);


assertEq(actual, expected)