()
| 609 | * Create a new thenable and result promise when the results have changed |
| 610 | */ |
| 611 | const recreateThenable = () => { |
| 612 | const pending = |
| 613 | (this.#currentThenable = |
| 614 | nextResult.promise = |
| 615 | pendingThenable()) |
| 616 | |
| 617 | finalizeThenableIfPossible(pending) |
| 618 | } |
| 619 | |
| 620 | const prevThenable = this.#currentThenable |
| 621 | switch (prevThenable.status) { |
nothing calls this directly
no test coverage detected