(context: string, cause: unknown)
| 1402 | error.name === "AbortError" || error.message.toLowerCase().includes("aborted"); |
| 1403 | |
| 1404 | const reportError = (context: string, cause: unknown) => { |
| 1405 | const error = toError(cause); |
| 1406 | if (closing && isAbortDuringClose(error)) return; |
| 1407 | console.error(`Executor MCP bridge ${context}: ${error.message}`); |
| 1408 | }; |
| 1409 | |
| 1410 | const forwardMessage = |
| 1411 | (send: (message: JSONRPCMessage) => Promise<void>, context: string) => |
no test coverage detected