make caching more robust; fixes #69534

This commit is contained in:
Andre Weinand
2019-03-08 16:41:06 +01:00
parent 63d4b744fd
commit ac46ca2a5e
3 changed files with 18 additions and 7 deletions

View File

@@ -636,6 +636,7 @@ export type DebugSessionUUID = string;
export interface MainThreadDebugServiceShape extends IDisposable {
$registerDebugTypes(debugTypes: string[]): void;
$sessionCached(sessionID: string): void;
$acceptDAMessage(handle: number, message: DebugProtocol.ProtocolMessage): void;
$acceptDAError(handle: number, name: string, message: string, stack: string): void;
$acceptDAExit(handle: number, code: number, signal: string): void;