blob: 040e8e5050e910beda530ec8d774a6c0720daf48 [file] [edit]
(function() {
var target = {};
var proxy = new Proxy(target, {});
for (var i = 0; i < testLoopCount; i++)
proxy.foo = i;
if (target.foo !== i - 1)
throw new Error("Bad value!");
})();