package dap

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

    The source location of the breakpoints; either 'source.path' or 'source.reference' must be specified.

    *)
  2. breakpoints : Source_breakpoint.t list option;
    (*

    The code locations of the breakpoints.

    *)
  3. lines : int list option;
    (*

    Deprecated: The code locations of the breakpoints.

    *)
  4. source_modified : bool option;
    (*

    A value of true indicates that the underlying source has been modified which results in new breakpoint locations.

    *)
}

Arguments for 'setBreakpoints' request.

val make : source:Source.t -> ?breakpoints:Source_breakpoint.t list option -> ?lines:int list option -> ?source_modified:bool option -> unit -> t
val to_yojson : t -> Yojson.Safe.t