input.js (493B)
1 export default function root() { 2 function aFunc(){ 3 // Since these bindings are on their own linem, the mappings will 4 // extend to the start of the line, rather than starting at the first 5 // character of the binding. 6 const { 7 one, 8 two 9 } = { 10 one: 1, 11 two: 2, 12 }; 13 14 // The 'this' binding here is also its own line, so the comment above 15 // applies here too. 16 this.thing = 4; 17 18 console.log("pause here", root); 19 } 20 21 aFunc.call({ }); 22 }