From f065ba8d8a4d2cd7cbb5c53e7af9111fbff9dbb9 Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Thu, 15 Apr 2021 00:22:26 +0200 Subject: [PATCH] DAP: pass launch config to restart request --- src/vs/workbench/contrib/debug/common/debugProtocol.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/debug/common/debugProtocol.d.ts b/src/vs/workbench/contrib/debug/common/debugProtocol.d.ts index a0268b294fa..e104c843adb 100644 --- a/src/vs/workbench/contrib/debug/common/debugProtocol.d.ts +++ b/src/vs/workbench/contrib/debug/common/debugProtocol.d.ts @@ -557,6 +557,7 @@ declare module DebugProtocol { /** Arguments for 'restart' request. */ export interface RestartArguments { + arguments?: LaunchRequestArguments | AttachRequestArguments; } /** Response to 'restart' request. This is just an acknowledgement, so no body field is required. */ @@ -735,8 +736,8 @@ declare module DebugProtocol { */ export interface SetExceptionBreakpointsResponse extends Response { body?: { - /** Information about the breakpoints. - The breakpoints returned are in the same order as the elements of the 'filters', 'filterOptions', 'exceptionOptions' array in the arguments. If both 'filters' and 'filterOptions' are given, the returned array must start with 'filters' information first, followed by 'filterOptions' information. + /** Information about the exception breakpoints or filters. + The breakpoints returned are in the same order as the elements of the 'filters', 'filterOptions', 'exceptionOptions' arrays in the arguments. If both 'filters' and 'filterOptions' are given, the returned array must start with 'filters' information first, followed by 'filterOptions' information. */ breakpoints?: Breakpoint[]; };