finalize debug uri API; fixes #79228

This commit is contained in:
Andre Weinand
2019-11-28 18:12:02 +01:00
parent bb2f59b094
commit 870d78d9d8
4 changed files with 23 additions and 27 deletions

View File

@@ -789,8 +789,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
removeBreakpoints(breakpoints: vscode.Breakpoint[]) {
return extHostDebugService.removeBreakpoints(breakpoints);
},
asDebugSourceUri(source: vscode.DebugSource, session?: vscode.DebugSession): vscode.Uri {
checkProposedApiEnabled(extension);
asDebugSourceUri(source: vscode.DebugProtocolSource, session?: vscode.DebugSession): vscode.Uri {
return extHostDebugService.asDebugSourceUri(source, session);
}
};