package dap

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

    The reference of the variable container.

    *)
  2. name : string;
    (*

    The name of the variable in the container.

    *)
  3. value : string;
    (*

    The value of the variable.

    *)
  4. format : Value_format.t option;
    (*

    Specifies details on how to format the response value.

    *)
}

Arguments for 'setVariable' request.

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