]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/weird-put-stack-varargs.js
3 throw "Error: foo.arguments[1] should be truthy but is falsy: " + foo
.arguments
[1];
18 function bar(array1
, array2
) {
19 fuzz
.apply(this, array1
);
20 foo
.apply(this, array2
);
25 for (var i
= 0; i
< 100000; ++i
)
26 bar([false, false], [false, true]);