Module Set_expression_command.Result
type t={value : string;The new value of the expression.
type_ : string option;The optional type of the value. This attribute should only be returned by a debug adapter if the client has passed the value true for the 'supportsVariableType' capability of the 'initialize' request.
presentation_hint : Variable_presentation_hint.t option;Properties of a value that can be used to determine how to render the result in the UI.
variables_reference : int option;If variablesReference is > 0, the value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. The value should be less than or equal to 2147483647 (2^31-1).
named_variables : int option;The number of named child variables. The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31-1).
indexed_variables : int option;The number of indexed child variables. The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31-1).
}
val make : value:string -> ?type_:string option -> ?presentation_hint:Variable_presentation_hint.t option -> ?variables_reference:int option -> ?named_variables:int option -> ?indexed_variables:int option -> unit -> tval to_yojson : t -> Yojson.Safe.tval of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or