tor-browser

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

testMethodWriteBarrier4.js (189B)


      1 var z = 0;
      2 function f() {
      3    this.b = function() {};
      4    this.b = undefined;
      5    if (z++ > 8)
      6        this.b();
      7 }
      8 
      9 try {
     10    for (var i = 0; i < 10; i++)
     11        new f();
     12 } catch (exc) {}