summaryrefslogtreecommitdiffstats
path: root/Source/JavaScriptCore/tests/perf/bench-allocate-nonretained.js
blob: d493416beba36e294b7ee8965794c52d3f2ce37e (plain)
1
2
3
4
5
6
(function () {
    for (var i = 0; i < 500; ++i) {
        for (var j = 0; j < 100000; ++j)
            var a = {};
    }
})();