1 2 3 4 5 6 7 8
function testNEWINIT() { var a; for (var i = 0; i < 10; ++i) a = [{}]; return uneval(a); } assertEq(testNEWINIT(), "[{}]");