summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/closures/t002.js
blob: 77e8178381a60c32e72b4a599be23e8993ab74df (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, f_arg, b, c) { 
  for (var i = 0; i < 5; ++i) {
    f_arg(i + a);
  }
}

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

t();
t();
t();


assertEq(actual, expected)