(executable: string, cmd: string, args: string[])
| 547 | } |
| 548 | |
| 549 | function createCommandCanceledError(executable: string, cmd: string, args: string[]): AppError { |
| 550 | return new AppError('COMMAND_FAILED', 'request canceled', { |
| 551 | cmd, |
| 552 | args, |
| 553 | executable, |
| 554 | reason: 'request_canceled', |
| 555 | }); |
| 556 | } |
| 557 | |
| 558 | function createTimeoutError( |
| 559 | executable: string, |
no outgoing calls
no test coverage detected