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

Method nextRequest

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

Source from the content-addressed store, hash-verified

3065 }
3066
3067 protected async nextRequest(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments): Promise<void> {
3068 try {
3069 const assemblyMode = args.granularity === 'instruction';
3070 const done = await this.miDebugger.next(args.threadId, assemblyMode);
3071 this.sendResponse(response);
3072 }
3073 catch (msg) {
3074 this.sendErrorResponse(response, 6, `Could not step over: ${msg}`);
3075 }
3076 }
3077
3078 protected checkFileExists(name: string): boolean {
3079 if (!name) {

Callers

nothing calls this directly

Calls 1

nextMethod · 0.65

Tested by

no test coverage detected