package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. filter_id : string;
    (*

    ID of an exception filter returned by the 'exceptionBreakpointFilters' capability.

    *)
  2. condition : string option;
    (*

    An optional expression for conditional exceptions. The exception will break into the debugger if the result of the condition is true.

    *)
}

An ExceptionFilterOptions is used to specify an exception filter together with a condition for the setExceptionsFilter request.

val make : filter_id:string -> ?condition:string option -> unit -> t
val to_yojson : t -> Yojson.Safe.t