debug: make createProcess private and remove startDebugSession from exHostDebugService

fixes #36132
This commit is contained in:
isidor
2017-10-13 11:06:51 +02:00
parent 0cd0f70b35
commit 55643dd7e3
6 changed files with 2 additions and 41 deletions

View File

@@ -393,7 +393,6 @@ export interface MainThreadDebugServiceShape extends IDisposable {
$registerDebugConfigurationProvider(type: string, hasProvideMethod: boolean, hasResolveMethod: boolean, handle: number): TPromise<any>;
$unregisterDebugConfigurationProvider(handle: number): TPromise<any>;
$startDebugging(folder: URI | undefined, nameOrConfig: string | vscode.DebugConfiguration): TPromise<boolean>;
$startDebugSession(folder: URI | undefined, config: vscode.DebugConfiguration): TPromise<DebugSessionUUID>;
$customDebugAdapterRequest(id: DebugSessionUUID, command: string, args: any): TPromise<any>;
}