step-over-function-params.js (370B)
1 var rollupStepOverFunctionParams = (function () { 2 'use strict'; 3 4 function test(a1, a2 = 45, { a3, a4, a5: { a6: a7 } = {} } = {}) { 5 console.log("pause next here"); 6 } 7 8 function fn() { 9 console.log("pause here"); 10 test("1", undefined, { a3: "3", a4: "4", a5: { a6: "7" } }); 11 } 12 13 return fn; 14 15 }()); 16 //# sourceMappingURL=step-over-function-params.js.map