]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/varargs-inlined-simple-exit-aliasing.js
5 function verify(a
, b
) {
7 throw "Error: the two arguments objects aren't identical.";
9 throw "Error: the first argument isn't 42 (a).";
11 throw "Error: the first argument isn't 42 (b).";
23 return foo
.apply(null, a
);
32 for (var i
= 0; i
< 10000; ++i
) {
33 var result
= baz(1, 2);
35 throw "Error: bad result: " + result
;
39 var result
= baz(1, 2);
41 throw "Error: bad result at end: " + result
;