( params: DebugContinueParams, ctx: DebuggerToolContext, )
| 82 | } |
| 83 | |
| 84 | export async function debug_continueLogic( |
| 85 | params: DebugContinueParams, |
| 86 | ctx: DebuggerToolContext, |
| 87 | ): Promise<void> { |
| 88 | const handlerCtx = getHandlerContext(); |
| 89 | const executeDebugContinue = createDebugContinueExecutor(ctx.debugger); |
| 90 | const result = await executeDebugContinue(params); |
| 91 | |
| 92 | setStructuredOutput(handlerCtx, result); |
| 93 | } |
| 94 | |
| 95 | export const schema = debugContinueSchema.shape; |
| 96 |
no test coverage detected