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 function testClosureIncrSideExit() {
2 let(f = function (y) {
3 let(ff = function (g) {
4 for each(let h in g) {
5 if (++y > 5) {
6 return 'ddd';
7 }
8 }
9 return 'qqq';
10 }) {
11 return ff(['', null, '', false, '', '', null]);
12 }
13 }) {
14 return f(-1);
15 }
16 }
17 assertEq(testClosureIncrSideExit(), "ddd");