DAP: pass launch config to restart request

This commit is contained in:
Andre Weinand
2021-04-15 00:22:26 +02:00
parent 81fb5b7acc
commit f065ba8d8a
+3 -2
View File
@@ -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[];
};