completions.js (264B)
1 "use strict"; 2 /* exported doRet, doThrow */ 3 4 function ret() { 5 return 2; 6 } 7 8 function throws() { 9 throw new Error("yo"); 10 } 11 12 function doRet() { 13 debugger; 14 const r = ret(); 15 return r; 16 } 17 18 function doThrow() { 19 debugger; 20 try { 21 throws(); 22 } catch (e) {} 23 }