line-start-bindings-es6.js (386B)
1 var rollupBabel6LineStartBindingsEs6 = (function () { 2 'use strict'; 3 4 function root() { 5 function aFunc() { 6 7 // The 'this' binding here is also its own line, so the comment above 8 // applies here too. 9 this.thing = 4; 10 11 console.log("pause here", root); 12 } 13 14 aFunc.call({}); 15 } 16 17 return root; 18 19 }()); 20 //# sourceMappingURL=line-start-bindings-es6.js.map