package dap

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

    Reference to the Variable container if the data breakpoint is requested for a child of the container.

    *)
  2. name : string;
    (*

    The name of the Variable's child to obtain data breakpoint information for. If variablesReference isn’t provided, this can be an expression.

    *)
}

Arguments for 'dataBreakpointInfo' request.

val make : ?variables_reference:int option -> name:string -> unit -> t
val to_yojson : t -> Yojson.Safe.t