提交 390c0bda 编写于 作者: I isidor

rawDebugSession: fire simulated continued event for the goto request

上级 e0c9b7b3
......@@ -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'));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册