Function
setStructuredOutput
(ctx: ToolHandlerContext, result: DebugStackResult)
Source from the content-addressed store, hash-verified
| 48 | } |
| 49 | |
| 50 | function setStructuredOutput(ctx: ToolHandlerContext, result: DebugStackResult): void { |
| 51 | ctx.structuredOutput = { |
| 52 | result, |
| 53 | schema: 'xcodebuildmcp.output.debug-stack-result', |
| 54 | schemaVersion: '2', |
| 55 | }; |
| 56 | } |
| 57 | |
| 58 | function parseThreadLine(line: string): { threadId: number; name: string } | null { |
| 59 | const trimmed = line.trim(); |
Tested by
no test coverage detected