classes.js (401B)
1 var rollupClasses = (function () { 2 'use strict'; 3 4 function root() { 5 let one = 1; 6 7 class Thing { 8 one() { 9 console.log("pause here"); 10 } 11 } 12 13 class Another { 14 method() { 15 16 console.log("pause here", Another, one, Thing, root); 17 } 18 } 19 20 new Another().method(); 21 new Thing().one(); 22 } 23 24 return root; 25 26 }()); 27 //# sourceMappingURL=classes.js.map