(code: number)
| 207 | } |
| 208 | |
| 209 | #resolveExitCode(code: number): void { |
| 210 | if (this.#exitCodeResolver) { |
| 211 | this.#exitCodeResolver(code) |
| 212 | this.#exitCodeResolver = null |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | // Note: exit/error listeners are NOT removed here — they're needed for |
| 217 | // the result promise to resolve. They clean up when the child process exits. |
no outgoing calls
no test coverage detected