package dap

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

    Start line of breakpoint location.

    *)
  2. column : int option;
    (*

    Optional start column of breakpoint location.

    *)
  3. end_line : int option;
    (*

    Optional end line of breakpoint location if the location covers a range.

    *)
  4. end_column : int option;
    (*

    Optional end column of breakpoint location if the location covers a range.

    *)
}

Properties of a breakpoint location returned from the 'breakpointLocations' request.

val make : line:int -> ?column:int option -> ?end_line:int option -> ?end_column:int option -> unit -> t
val to_yojson : t -> Yojson.Safe.t