michael@0: actual = ''; michael@0: expected = '787878,'; michael@0: michael@0: var q = []; michael@0: for (var a = 0; a < 3; ++a) { michael@0: (function () { michael@0: for (var b = 7; b < 9; ++b) { michael@0: (function () { michael@0: for (var c = 0; c < 1; ++c) { michael@0: q.push(b); michael@0: } michael@0: })(); michael@0: } michael@0: })(); michael@0: } michael@0: appendToActual(q.join("")); michael@0: michael@0: michael@0: assertEq(actual, expected)