michael@0: function foo() { michael@0: x = null; michael@0: } michael@0: function f() { michael@0: for (var i=0; i<99; i++) { michael@0: x = null; michael@0: if (i >= 97) { michael@0: gc(); michael@0: gc(); michael@0: foo(); michael@0: } michael@0: x = {}; michael@0: if (i >= 97) michael@0: foo(); michael@0: } michael@0: } michael@0: f();