tor-browser

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

bug1902907.js (302B)


      1 // |jit-test| --fast-warmup; --no-threads; skip-if: !('disassemble' in this)
      2 Object.defineProperty(RegExp.prototype, "flags", {get: function() {
      3    Array.prototype.push.call(this);
      4 }});
      5 function f() {
      6    var s = disassemble();
      7    for (var i = 0; i < 30; i++) {
      8        s.replace(/0./);
      9    }
     10 }
     11 f();