()
| 335 | void coordinator.shutdown('sigint'); |
| 336 | }; |
| 337 | const handleStdinEnd = (): void => { |
| 338 | suppressProcessStdioWrites(); |
| 339 | void coordinator.shutdown('stdin-end'); |
| 340 | }; |
| 341 | const handleStdinClose = (): void => { |
| 342 | suppressProcessStdioWrites(); |
| 343 | void coordinator.shutdown('stdin-close'); |
nothing calls this directly
no test coverage detected