MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / getStack

Method getStack

src/utils/debugger/debugger-manager.ts:175–183  ·  view source on GitHub ↗
(
    id: string | undefined,
    opts?: { threadIndex?: number; maxFrames?: number },
  )

Source from the content-addressed store, hash-verified

173 }
174
175 async getStack(
176 id: string | undefined,
177 opts?: { threadIndex?: number; maxFrames?: number },
178 ): Promise<string> {
179 const session = this.requireSession(id);
180 const result = await session.backend.getStack(opts);
181 this.touch(session.info.id);
182 return result;
183 }
184
185 async getVariables(id: string | undefined, opts?: { frameIndex?: number }): Promise<string> {
186 const session = this.requireSession(id);

Callers

nothing calls this directly

Calls 3

requireSessionMethod · 0.95
touchMethod · 0.95
getStackMethod · 0.65

Tested by

no test coverage detected