]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/make-rope-3.js
2 return "hello" + x
+ "!!";
7 for (var i
= 0; i
< 100000; ++i
) {
8 var result
= foo(" world");
9 if (typeof result
!= "string") {
11 throw "Error: bad result type: " + result
;
13 if (result
!= "hello world!!")
14 throw "Error: bad result: " + result
;