debug: mark terminal as free when the associated debug session ends (#115573)

This commit is contained in:
Connor Peet
2021-02-02 08:27:37 -08:00
committed by GitHub
parent 6662709200
commit 3088c27fbd
11 changed files with 37 additions and 24 deletions

View File

@@ -361,7 +361,7 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
// RPC methods (ExtHostDebugServiceShape)
public async $runInTerminal(args: DebugProtocol.RunInTerminalRequestArguments): Promise<number | undefined> {
public async $runInTerminal(args: DebugProtocol.RunInTerminalRequestArguments, sessionId: string): Promise<number | undefined> {
return Promise.resolve(undefined);
}