(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments)
| 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) { |