debug API: add onDidStartDebugSession

This commit is contained in:
Andre Weinand
2017-07-18 00:18:27 +02:00
parent 81813b2ca4
commit 254c8c5b0b
8 changed files with 42 additions and 0 deletions

View File

@@ -499,6 +499,7 @@ export abstract class ExtHostTaskShape {
}
export abstract class ExtHostDebugServiceShape {
$acceptDebugSessionStarted(id: DebugSessionUUID, type: string, name: string): void { throw ni(); }
$acceptDebugSessionTerminated(id: DebugSessionUUID, type: string, name: string): void { throw ni(); }
$acceptDebugSessionActiveChanged(id: DebugSessionUUID | undefined, type?: string, name?: string): void { throw ni(); }
$acceptDebugSessionCustomEvent(id: DebugSessionUUID, type: string, name: string, event: any): void { throw ni(); }