tor-browser

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

bug925067-2.js (220B)


      1 // |jit-test| error: 4
      2 function g(o) {
      3    if (o.x >= 0) {
      4 for(;;)
      5     o.next();
      6    }
      7    return o.x;
      8 }
      9 function f() {
     10    var o = {x: 0, next: function() {
     11 if (this.x++ > 100)
     12     throw 4;
     13    }};
     14    g(o);
     15 }
     16 f();