add proposed 'startDebugging' API

This commit is contained in:
Andre Weinand
2017-07-18 21:14:53 +02:00
parent 77eed5ad44
commit 6f4ebe7517
5 changed files with 34 additions and 0 deletions

View File

@@ -467,6 +467,9 @@ export function createApiFactory(
get activeDebugSession() {
return extHostDebugService.activeDebugSession;
},
startDebugging: proposedApiFunction(extension, (nameOrConfig: string | vscode.DebugConfiguration) => {
return extHostDebugService.startDebugging(nameOrConfig);
}),
startDebugSession(config: vscode.DebugConfiguration) {
return extHostDebugService.startDebugSession(config);
},