(error)
| 523 | } |
| 524 | |
| 525 | #rejectPendingReads(error) { |
| 526 | while (this.#pendingReads.length > 0) { |
| 527 | this.#pendingReads.shift().reject(error); |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | #rejectPendingWrites(error) { |
| 532 | while (this.#pendingWrites.length > 0) { |
no test coverage detected