package dap

  1. Overview
  2. Docs
Debug adapter protocol

Install

Dune Dependency

Authors

Maintainers

Sources

dap-1.0.1.tbz
sha256=2c1cb97ed697a3b3c236b3d6d42332193ed9e4f169845551d3690bfa8aa1f527
sha512=9653b7e91148b0a86c41084524dc52ac25e2062d0c39965ab6a916791e9149ca0459ad1e12a71f0670e1956e5295c08356c3bb26bf99090739763f3dbe1fcbdb

doc/dap.types/Debug_protocol/Request/index.html

Module Debug_protocol.RequestSource

Sourcemodule Type : sig ... end
Sourcetype 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.

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

Innovation. Community. Security.