tor-browser

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

script-switching-02.js (390B)


      1 /* Any copyright is dedicated to the Public Domain.
      2   http://creativecommons.org/publicdomain/zero/1.0/ */
      3 
      4 function secondCall() {
      5  // This comment is useful: ☺
      6  debugger;
      7  function foo() {}
      8  if (x) {
      9    foo();
     10  }
     11  return 44;
     12 }
     13 
     14 var x = true;
     15 // For testing that anonymous functions do not show up in the
     16 // quick open panel browser_dbg-quick-open.js
     17 () => { }
     18 console.log("hi")