( params: DebugStackParams, ctx: DebuggerToolContext, )
| 174 | } |
| 175 | |
| 176 | export async function debug_stackLogic( |
| 177 | params: DebugStackParams, |
| 178 | ctx: DebuggerToolContext, |
| 179 | ): Promise<void> { |
| 180 | const handlerCtx = getHandlerContext(); |
| 181 | const executeDebugStack = createDebugStackExecutor(ctx.debugger); |
| 182 | const result = await executeDebugStack(params); |
| 183 | |
| 184 | setStructuredOutput(handlerCtx, result); |
| 185 | } |
| 186 | |
| 187 | export const schema = debugStackSchema.shape; |
| 188 |
no test coverage detected