mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-18 06:09:20 +01:00
DAP: pass launch config to restart request
This commit is contained in:
@@ -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[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user