(result: CoderCommandResult)
| 1062 | const terminator = createGracefulTerminator(child); |
| 1063 | |
| 1064 | const resolveOnce = (result: CoderCommandResult) => { |
| 1065 | if (resolved) return; |
| 1066 | resolved = true; |
| 1067 | resolve(result); |
| 1068 | }; |
| 1069 | |
| 1070 | const cleanup = (cleanupOptions?: { keepSigkillTimer?: boolean }) => { |
| 1071 | if (timeoutTimer) { |