package dap

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Debug_protocol.Variable_presentation_hintSource

Sourcemodule Kind : sig ... end
Sourcemodule Attributes : sig ... end
Sourcemodule Visibility : sig ... end
Sourcetype t = {
  1. kind : Kind.t option;
    (*

    The kind of variable. Before introducing additional values, try to use the listed values.

    *)
  2. attributes : Attributes.t list option;
    (*

    Set of attributes represented as an array of strings. Before introducing additional values, try to use the listed values.

    *)
  3. visibility : Visibility.t option;
    (*

    Visibility of variable. Before introducing additional values, try to use the listed values.

    *)
}

Optional properties of a variable that can be used to determine how to render the variable in the UI.

Sourceval make : ?kind:Kind.t option -> ?attributes:Attributes.t list option -> ?visibility:Visibility.t option -> unit -> t
Sourceval to_yojson : t -> Yojson.Safe.t
OCaml

Innovation. Community. Security.