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

Method stepOutRequest

src/gdb.ts:3057–3065  ·  view source on GitHub ↗
(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments)

Source from the content-addressed store, hash-verified

3055 }
3056
3057 protected async stepOutRequest(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments): Promise<void> {
3058 try {
3059 const done = await this.miDebugger.stepOut(args.threadId);
3060 this.sendResponse(response);
3061 }
3062 catch (msg) {
3063 this.sendErrorResponse(response, 5, `Could not step out: ${msg}`);
3064 }
3065 }
3066
3067 protected async nextRequest(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments): Promise<void> {
3068 try {

Callers

nothing calls this directly

Calls 1

stepOutMethod · 0.65

Tested by

no test coverage detected