(error: unknown)
| 355 | } |
| 356 | |
| 357 | recordError(error: unknown): void { |
| 358 | this.#reportedErrors.push(error); |
| 359 | if (!this.#hasError) { |
| 360 | this.#hasError = true; |
| 361 | this.#firstError = error; |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | async #flushInternal(): Promise<void> { |
| 366 | for (;;) { |
no outgoing calls
no test coverage detected