step-over-for-of-array.js (378B)
1 var rollupStepOverForOfArray = (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.js.map