From 31072fcaacf31b04ddb0b784f08e556a4e5e73b8 Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Tue, 13 Mar 2018 11:10:12 +0100 Subject: [PATCH] add 'clientName' to 'initialize' request --- src/vs/workbench/parts/debug/common/debugProtocol.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vs/workbench/parts/debug/common/debugProtocol.d.ts b/src/vs/workbench/parts/debug/common/debugProtocol.d.ts index b0be8e2dfcb..8363be726bd 100644 --- a/src/vs/workbench/parts/debug/common/debugProtocol.d.ts +++ b/src/vs/workbench/parts/debug/common/debugProtocol.d.ts @@ -295,6 +295,8 @@ declare module DebugProtocol { export interface InitializeRequestArguments { /** The ID of the (frontend) client using this adapter. */ clientID?: string; + /** The human readable name of the (frontend) client using this adapter. */ + clientName?: string; /** The ID of the debug adapter. */ adapterID: string; /** The ISO-639 locale of the (frontend) client using this adapter, e.g. en-US or de-CH. */