tor-browser

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

bug1845257.js (427B)


      1 // |jit-test| --no-threads; --baseline-warmup-threshold=10; --ion-warmup-threshold=100; --fuzzing-safe; --gc-zeal=10
      2 
      3 const v7 = {};
      4 
      5 function foo(n) {
      6    if (n == 0) return;
      7    const v13 = Object(Object);
      8    const v14 = v13(v7);
      9    const v15 = v13.create(v13);
     10    v15.setPrototypeOf(v14, v13);
     11    const v18 = v15.assign(v14).create(v14); // 1
     12    v18.is(v18, v18);                        // 2
     13    foo(n-1);
     14 }
     15 foo(2000);