mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
debug API to create/remove breakpoints; fixes #42173
This commit is contained in:
@@ -538,7 +538,13 @@ export function createApiFactory(
|
||||
},
|
||||
registerDebugConfigurationProvider(debugType: string, provider: vscode.DebugConfigurationProvider) {
|
||||
return extHostDebugService.registerDebugConfigurationProvider(debugType, provider);
|
||||
}
|
||||
},
|
||||
addBreakpoints: proposedApiFunction(extension, (breakpoints: vscode.Breakpoint[]) => {
|
||||
return extHostDebugService.addBreakpoints(breakpoints);
|
||||
}),
|
||||
removeBreakpoints: proposedApiFunction(extension, (breakpoints: vscode.Breakpoint[]) => {
|
||||
return extHostDebugService.removeBreakpoints(breakpoints);
|
||||
})
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user