tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug1423173.js (234B)


      1 // |jit-test| --baseline-eager
      2 Array.prototype.push(1);
      3 Object.freeze([].__proto__);
      4 var x = [];
      5 var c = 0;
      6 for (var j = 0; j < 5; ++j) {
      7    try {
      8        x.push(function() {});
      9    } catch (e) {
     10        c++;
     11    }
     12 }
     13 assertEq(c, j);