From 3f329325acb45a0a5b7ab32aa6679c0325fa4b06 Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Mon, 28 Dec 2015 16:00:46 +0100 Subject: [PATCH] change SourceBreakpoint attribute 'expression' to 'condition' --- extensions/node-debug/node-debug.azure.json | 2 +- src/vs/workbench/parts/debug/common/debugProtocol.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/node-debug/node-debug.azure.json b/extensions/node-debug/node-debug.azure.json index b08bac10096..f9516d28acf 100644 --- a/extensions/node-debug/node-debug.azure.json +++ b/extensions/node-debug/node-debug.azure.json @@ -1,6 +1,6 @@ { "account": "monacobuild", "container": "debuggers", - "zip": "c8d7980/node-debug.zip", + "zip": "f1ea61a/node-debug.zip", "output": "" } diff --git a/src/vs/workbench/parts/debug/common/debugProtocol.d.ts b/src/vs/workbench/parts/debug/common/debugProtocol.d.ts index f08afcdc7e7..0806ccb3cd8 100644 --- a/src/vs/workbench/parts/debug/common/debugProtocol.d.ts +++ b/src/vs/workbench/parts/debug/common/debugProtocol.d.ts @@ -500,7 +500,7 @@ declare module DebugProtocol { /** An optional source column of the breakpoint. */ column?: number; /** An optional expression for conditional breakpoints. */ - expression?: string; + condition?: string; } /** Information about a Breakpoint created in the setBreakpoints request. -- GitLab