package dap

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

    The l-value expression to assign to.

    *)
  2. value : string;
    (*

    The value expression to assign to the l-value expression.

    *)
  3. frame_id : int option;
    (*

    Evaluate the expressions in the scope of this stack frame. If not specified, the expressions are evaluated in the global scope.

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

    Specifies how the resulting value should be formatted.

    *)
}

Arguments for 'setExpression' request.

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