Module Set_exception_breakpoints_command.Arguments

type t = {
filters : string list;

Set of exception filters specified by their ID. The set of all possible exception filters is defined by the 'exceptionBreakpointFilters' capability. The 'filter' and 'filterOptions' sets are additive.

filter_options : Exception_filter_options.t list option;

Set of exception filters and their options. The set of all possible exception filters is defined by the 'exceptionBreakpointFilters' capability. This attribute is only honored by a debug adapter if the capability 'supportsExceptionFilterOptions' is true. The 'filter' and 'filterOptions' sets are additive.

exception_options : Exception_options.t list option;

Configuration options for selected exceptions. The attribute is only honored by a debug adapter if the capability 'supportsExceptionOptions' is true.

}

Arguments for 'setExceptionBreakpoints' request.

val make : ?⁠filters:string list -> ?⁠filter_options:Exception_filter_options.t list option -> ?⁠exception_options:Exception_options.t list option -> unit -> t
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or