tor-browser

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

doc-merge-scopes.html (331B)


      1 <script>
      2 function run() {
      3  setTimeout(first);
      4  setTimeout(second);
      5  setTimeout(third);
      6 }
      7 
      8 function first(x) {
      9  let y = 0;
     10  var z = 1;
     11  debugger;
     12 }
     13 
     14 function second(x) {
     15  if (second) {
     16    let y = 0;
     17    debugger;
     18  }
     19 }
     20 
     21 function third(x) {
     22  let y = 1;
     23  if (y) {
     24    let z = 0;
     25    var v = 2;
     26    debugger;
     27  }
     28 }
     29 </script>