michael@0: var res = 0; michael@0: var o = {__proto__: function() { res++; }}; michael@0: michael@0: function f() { michael@0: for (var i=0; i<70; i++) { michael@0: o.__proto__(); michael@0: } michael@0: } michael@0: f(); michael@0: assertEq(res, 70);