提交 5aaa268c 编写于 作者: A Andre Weinand

update DAP

上级 b98e13ce
......@@ -329,10 +329,13 @@ declare module DebugProtocol {
arguments?: DisconnectArguments;
}
/** Arguments for 'disconnect' request.
The disconnect request has no standardized attributes.
*/
/** Arguments for 'disconnect' request. */
export interface DisconnectArguments {
/** Indicates whether the debuggee should be terminated when the debugger is disconnected.
If unspecified, the debug adapter is free to do whatever it thinks is best.
A client can only rely on this attribute being properly honored if a debug adapter returns true for the 'supportTerminateDebuggee' capability.
*/
terminateDebuggee?: boolean;
}
/** Response to 'disconnect' request. This is just an acknowledgement, so no body field is required. */
......@@ -981,6 +984,8 @@ declare module DebugProtocol {
supportsValueFormattingOptions?: boolean;
/** The debug adapter supports the exceptionInfo request. */
supportsExceptionInfoRequest?: boolean;
/** The debug adapter supports the 'terminateDebuggee' attribute on the 'disconnect' request. */
supportTerminateDebuggee?: boolean;
}
/** An ExceptionBreakpointsFilter is shown in the UI as an option for configuring how exceptions are dealt with. */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册