test-autocomplete-mapped.js (436B)
1 "use strict"; 2 const i = { x: { y: { importResult: true } } }; 3 const j = { get x() { return blackbox({ get y() { return blackbox({ getterResult: 1 }); } }); } }; 4 5 const blackbox = x=>[x].pop(); 6 7 function firstCall() { 8 const t = 42; 9 const u = i.x.y; 10 const v = j.x.y.getterResult; 11 const o = { 12 get value() { 13 return blackbox(Promise.resolve()); 14 } 15 }; 16 debugger; 17 } 18 //# sourceMappingURL=test-autocomplete-mapped.js.map