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

@@ -345,6 +345,7 @@ export abstract class MainThreadSCMShape {
export type DebugSessionUUID = string;
export abstract class MainThreadDebugServiceShape {
$startDebugging(nameOrConfig: string | vscode.DebugConfiguration): TPromise<boolean> { throw ni(); }
$startDebugSession(config: vscode.DebugConfiguration): TPromise<DebugSessionUUID> { throw ni(); }
$customDebugAdapterRequest(id: DebugSessionUUID, command: string, args: any): TPromise<any> { throw ni(); }
}