package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Kind : sig ... end
module Attributes : sig ... end
module Visibility : sig ... end
type 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.

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