]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/create-this-with-callee-variants.js
1 function createInLoop(x
, count
) {
3 for (var i
= 0; i
< 5000; i
++) {
5 if (!(obj
instanceof x
))
6 throw "Failed to instantiate the right object";
10 function y() { return function () {} }
14 function z() { return function () {} }