()
| 516 | } |
| 517 | |
| 518 | private abortInProgressLoad(): void { |
| 519 | untracked(() => this.pendingController?.abort()); |
| 520 | this.pendingController = undefined; |
| 521 | |
| 522 | // Once the load is aborted, we no longer want to block stability on its resolution. |
| 523 | this.resolvePendingTask?.(); |
| 524 | this.resolvePendingTask = undefined; |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | function saveToTransferState<R, T>( |
no test coverage detected