mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
rawDebugSession: fire simulated continued event for the goto request
This commit is contained in:
@@ -444,7 +444,10 @@ export class RawDebugSession {
|
||||
|
||||
goto(args: DebugProtocol.GotoArguments): Promise<DebugProtocol.GotoResponse> {
|
||||
if (this.capabilities.supportsGotoTargetsRequest) {
|
||||
return this.send('goto', args);
|
||||
return this.send('goto', args).then(res => {
|
||||
this.fireSimulatedContinuedEvent(args.threadId);
|
||||
return res;
|
||||
});
|
||||
}
|
||||
return Promise.reject(new Error('goto is not supported'));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user