functions.js (396B)
1 var rollupBabel6Functions = (function () { 2 'use strict'; 3 4 function root() { 5 6 function decl(p1) { 7 var inner = function inner(p2) { 8 var arrow = function arrow(p3) { 9 console.log("pause here", p3, arrow, p2, inner, p1, decl, root); 10 }; 11 arrow(); 12 }; 13 inner(); 14 } 15 16 decl(); 17 } 18 19 return root; 20 21 }()); 22 //# sourceMappingURL=functions.js.map