tor-browser

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

settle-now-breaks-all-invariants-8.js (176B)


      1 // Don't assert when settlePromiseNow() is called on an async-function promise.
      2 
      3 var promise = async function(){ await 0; }();
      4 
      5 try {
      6    settlePromiseNow(promise);
      7 } catch {}