()
| 445 | this.close(); |
| 446 | } |
| 447 | #done() { |
| 448 | this.#timer = undefined; |
| 449 | |
| 450 | this.#state = "completing"; |
| 451 | this.#current.onDone?.call(this.#current.request, null); |
| 452 | this.#state = "connected"; |
| 453 | this.#next(); |
| 454 | if (this.#current) |
| 455 | this.#onWritable(this.#writable); |
| 456 | } |
| 457 | #next() { |
| 458 | this.#current = this.#requests.shift(); |
| 459 | if (!this.#current) |
no test coverage detected