package dap

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

    Display the value in hex.

    *)
  2. parameters : bool option;
    (*

    Displays parameters for the stack frame.

    *)
  3. parameter_types : bool option;
    (*

    Displays the types of parameters for the stack frame.

    *)
  4. parameter_names : bool option;
    (*

    Displays the names of parameters for the stack frame.

    *)
  5. parameter_values : bool option;
    (*

    Displays the values of parameters for the stack frame.

    *)
  6. line : bool option;
    (*

    Displays the line number of the stack frame.

    *)
  7. module_ : bool option;
    (*

    Displays the module of the stack frame.

    *)
  8. include_all : bool option;
    (*

    Includes all stack frames, including those the debug adapter might otherwise hide.

    *)
}
val make : ?hex:bool option -> ?parameters:bool option -> ?parameter_types:bool option -> ?parameter_names:bool option -> ?parameter_values:bool option -> ?line:bool option -> ?module_:bool option -> ?include_all:bool option -> unit -> t
val to_yojson : t -> Yojson.Safe.t