]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/dfg-rare-data.js
1 function F () { this.inner
= 42; };
3 for (var i
= 0; i
< 10000; ++i
) {
5 F
.prototype = Object
; // Force clearing of the function's rare data
8 throw "Expected 42, got: " + result
;