new proposed API stopDebugging; see #101883

This commit is contained in:
Andre Weinand
2020-07-09 10:49:05 +02:00
parent 5de084ce73
commit 673e35d278
5 changed files with 39 additions and 0 deletions

View File

@@ -868,6 +868,9 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
}
return extHostDebugService.startDebugging(folder, nameOrConfig, parentSessionOrOptions || {});
},
stopDebugging(session: vscode.DebugSession | undefined) {
return extHostDebugService.stopDebugging(session);
},
addBreakpoints(breakpoints: vscode.Breakpoint[]) {
return extHostDebugService.addBreakpoints(breakpoints);
},