1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
function d() { let methods; const promise = new Promise((resolve, reject)=>{ methods = { resolve, reject }; }); return Object.assign(promise, methods); } class A { a() { this.s.resolve(); } constructor(){ this.s = d(); } } new A();