]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/inlined-constructor-this-liveness.js
bded332c4681c5c77565dbf247fcabdeb71655db
  12 for (var i 
= 0; i 
< 100000; ++i
) { 
  13     var result 
= foo({f:1}, {f:2}); 
  15         throw "Error: bad result.f: " + result
.f
; 
  17         throw "Error: bad result.g: " + result
.g
; 
  20 var result 
= foo({f:1}, {f:2.5}); 
  22     throw "Error: bad result.f: " + result
.f
; 
  24     throw "Error: bad result.f: " + result
.g
;