Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1 revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 var a = [];
2 for (let j = 0; j < 6; ++j) {
3 e = 3;
4 for each (let c in [10, 20, 30]) {
5 a.push(e);
6 e = c;
7 }
8 }
9 for (let j = 0; j < 6; ++j) {
10 assertEq(a[j*3 + 0], 3);
11 assertEq(a[j*3 + 1], 10);
12 assertEq(a[j*3 + 2], 20);
13 }