michael@0: function t() { michael@0: var iter = 0; michael@0: function a(w) { michael@0: var a = new Array(w); michael@0: assertEq(a.length, w); michael@0: } michael@0: function r() { michael@0: a(3); michael@0: a(4); michael@0: } michael@0: for (var i=0; i<100; i++) { michael@0: r(); michael@0: } michael@0: } michael@0: t();