(error: Error)
| 844 | } |
| 845 | |
| 846 | const terminalErrorHandler = (error: Error): void => { |
| 847 | if (isDeadTerminalError(error)) { |
| 848 | this.emergencyTerminalExit(); |
| 849 | } |
| 850 | }; |
| 851 | process.stdout.on('error', terminalErrorHandler); |
| 852 | process.stderr.on('error', terminalErrorHandler); |
| 853 | this.signalCleanupHandlers.push(() => { |
nothing calls this directly
no test coverage detected