()
| 339 | void coordinator.shutdown('stdin-end'); |
| 340 | }; |
| 341 | const handleStdinClose = (): void => { |
| 342 | suppressProcessStdioWrites(); |
| 343 | void coordinator.shutdown('stdin-close'); |
| 344 | }; |
| 345 | const handleStdoutError = (error: unknown): void => { |
| 346 | if (!isBrokenPipeLikeError(error)) { |
| 347 | return; |
nothing calls this directly
no test coverage detected