package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Type : sig ... end
type t = {
  1. seq : int;
    (*

    Sequence number (also known as message ID). For protocol messages of type 'request' this ID can be used to cancel the request.

    *)
  2. type_ : Type.t;
  3. command : string;
    (*

    The command to execute.

    *)
  4. arguments : Yojson.Safe.t;
    (*

    Object containing arguments for the command.

    *)
}
val make : seq:int -> type_:Type.t -> command:string -> ?arguments:Yojson.Safe.t -> unit -> t
val to_yojson : t -> Yojson.Safe.t