package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Context : sig ... end
type t = {
  1. expression : string;
    (*

    The expression to evaluate.

    *)
  2. frame_id : int option;
    (*

    Evaluate the expression in the scope of this stack frame. If not specified, the expression is evaluated in the global scope.

    *)
  3. context : Context.t option;
    (*

    The context in which the evaluate request is run.

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

    Specifies details on how to format the Evaluate result. The attribute is only honored by a debug adapter if the capability 'supportsValueFormattingOptions' is true.

    *)
}

Arguments for 'evaluate' request.

val make : expression:string -> ?frame_id:int option -> ?context:Context.t option -> ?format:Value_format.t option -> unit -> t
val to_yojson : t -> Yojson.Safe.t