add DebugSession.terminate; see #101883

This commit is contained in:
Andre Weinand
2020-07-08 17:47:51 +02:00
parent af9af1ea05
commit e308dd3b36
4 changed files with 21 additions and 0 deletions

View File

@@ -952,6 +952,10 @@ export class ExtHostDebugSession implements vscode.DebugSession {
public customRequest(command: string, args: any): Promise<any> {
return this._debugServiceProxy.$customDebugAdapterRequest(this._id, command, args);
}
public terminate(): Promise<void> {
return this._debugServiceProxy.$terminateDebugSession(this._id);
}
}
export class ExtHostDebugConsole implements vscode.DebugConsole {