make return type of getDebugProtocolBreakpoint async

This commit is contained in:
Andre Weinand
2020-08-18 19:15:53 +02:00
parent c30092a838
commit 5ccf8034de
2 changed files with 9 additions and 2 deletions

View File

@@ -958,7 +958,7 @@ export class ExtHostDebugSession implements vscode.DebugSession {
return this._debugServiceProxy.$customDebugAdapterRequest(this._id, command, args);
}
public getDebugProtocolBreakpoint(breakpoint: vscode.Breakpoint): vscode.DebugProtocolBreakpoint | undefined {
public getDebugProtocolBreakpoint(breakpoint: vscode.Breakpoint): Promise<vscode.DebugProtocolBreakpoint | undefined> {
return this._debugServiceProxy.$getDebugProtocolBreakpoint(this._id, breakpoint.id);
}
}