( params: DebugDetachParams, ctx: DebuggerToolContext, )
| 81 | } |
| 82 | |
| 83 | export async function debug_detachLogic( |
| 84 | params: DebugDetachParams, |
| 85 | ctx: DebuggerToolContext, |
| 86 | ): Promise<void> { |
| 87 | const handlerCtx = getHandlerContext(); |
| 88 | const executeDebugDetach = createDebugDetachExecutor(ctx.debugger); |
| 89 | const result = await executeDebugDetach(params); |
| 90 | |
| 91 | setStructuredOutput(handlerCtx, result); |
| 92 | } |
| 93 | |
| 94 | export const schema = debugDetachSchema.shape; |
| 95 |
no test coverage detected