tor-browser

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

step-over-for-of-array-closure.js (403B)


      1 var rollupStepOverForOfArrayClosure = (function () {
      2  'use strict';
      3 
      4  // Babel will optimize this for..of because it call tell the value is an array.
      5  function root() {
      6    console.log("pause here");
      7 
      8    for (const val of [1, 2]) {
      9      console.log("pause again", (() => val)());
     10    }
     11 
     12    console.log("done");
     13  }
     14 
     15  return root;
     16 
     17 }());
     18 //# sourceMappingURL=step-over-for-of-array-closure.js.map