package dap

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

    An identifier for the data on which a data breakpoint can be registered with the setDataBreakpoints request or null if no data breakpoint is available.

    *)
  2. description : string;
    (*

    UI string that describes on what data the breakpoint is set on or why a data breakpoint is not available.

    *)
  3. access_types : Data_breakpoint_access_type.t list option;
    (*

    Optional attribute listing the available access types for a potential data breakpoint. A UI frontend could surface this information.

    *)
  4. can_persist : bool option;
    (*

    Optional attribute indicating that a potential data breakpoint could be persisted across sessions.

    *)
}
val make : ?data_id:string -> description:string -> ?access_types:Data_breakpoint_access_type.t list option -> ?can_persist:bool option -> unit -> t
val to_yojson : t -> Yojson.Safe.t