]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/dead-access-to-captured-variable-preceded-by-a-live-store.js
3 (function() { x
= 43; })();
6 (function() { x
= 44; })();
13 for (var i
= 0; i
< 10000; ++i
) {
16 throw "Error: bad result: " + result
;