(error: unknown)
| 6198 | } |
| 6199 | |
| 6200 | function isNotFoundError(error: unknown): error is NodeJS.ErrnoException { |
| 6201 | return error instanceof Error && 'code' in error && error.code === 'ENOENT'; |
| 6202 | } |
| 6203 | |
| 6204 | function sameSubagentWorkspace( |
| 6205 | left: SubagentWorkspaceBinding | undefined, |
no outgoing calls
no test coverage detected