aboutsummaryrefslogtreecommitdiffstats
path: root/tools/node_modules/expresso/deps/jscoverage/tests/javascript/javascript-for.js
blob: 166b586b477f54a1de96a62614708470e1cb2df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
for (i in x) {
  x();
}

for (var i in x) {
  x();
}

for (i = 0; i < x; i++) {
  x();
}

for (var j = 0; j < x; j++) {
  x();
}

for (i in x)
  x();

for (i.value in x) {
  x();
}