package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. 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.

    *)
  2. 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.

    *)
  3. 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