MCPcopy Create free account
hub / github.com/Marus/cortex-debug / getThreadFrameStr

Method getThreadFrameStr

src/backend/mi2/mi2.ts:975–979  ·  view source on GitHub ↗
(threadId: number, frameId: number)

Source from the content-addressed store, hash-verified

973 }
974
975 public static getThreadFrameStr(threadId: number, frameId: number): string {
976 const th = threadId > 0 ? `--thread ${threadId} ` : '';
977 const fr = frameId >= 0 ? `--frame ${frameId}` : '';
978 return th + fr;
979 }
980
981 // Pass negative threadId/frameId to specify no context or current context
982 public async varUpdate(name: string = '*', threadId: number, frameId: number): Promise<MINode> {

Callers 3

evalExpressionMethod · 0.80
varUpdateMethod · 0.80
varAssignMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected