From da552af6f87384fc83e1f5ba48ef5d1017b75b8b Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 7 Jul 2016 16:20:02 -0700 Subject: [PATCH] Make supportsVariableType optional Fixes build --- src/vs/workbench/parts/debug/common/debugProtocol.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/common/debugProtocol.d.ts b/src/vs/workbench/parts/debug/common/debugProtocol.d.ts index 89f466c1209..3391d27b9b1 100644 --- a/src/vs/workbench/parts/debug/common/debugProtocol.d.ts +++ b/src/vs/workbench/parts/debug/common/debugProtocol.d.ts @@ -179,7 +179,7 @@ declare module DebugProtocol { pathFormat?: string; /** Client supports the optional type attribute for variables. */ - supportsVariableType: boolean; + supportsVariableType?: boolean; } /** Response to Initialize request. */ export interface InitializeResponse extends Response { -- GitLab