]> git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/array-pop-double.js
69c36c5cc7ae794c5ec08c59acae44462907be2d
[apple/javascriptcore.git] / tests / stress / array-pop-double.js
1 function foo(array) {
2 return [array.pop(), array.pop(), array.pop(), array.pop()];
3 }
4
5 noInline(foo);
6
7 for (var i = 0; i < 100000; ++i) {
8 var result = foo([1.5, 2.5, 3.5]);
9 if (result.toString() != "3.5,2.5,1.5,")
10 throw "Error: bad result: " + result;
11 }