package dap

  1. Overview
  2. Docs
Debug adapter protocol

Install

Dune Dependency

Authors

Maintainers

Sources

dap-1.0.6.tbz
sha256=e0b249a3e7382125402ad15d71f4924eef60cfcec326383a5168d424087200ff
sha512=97805a383ad03ba24f1dabe20798c139678f958dfa2aed1664098f444aaeefd56d6dd7ff3650800eaefe5b17e09098427b78500316699e7267eb1fef233d6a99

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

Module Debug_protocol.SourceSource

Sourcemodule Presentation_hint : sig ... end
Sourcetype t = {
  1. name : string option;
    (*

    The short name of the source. Every source returned from the debug adapter has a name. When sending a source to the debug adapter this name is optional.

    *)
  2. path : string option;
    (*

    The path of the source to be shown in the UI. It is only used to locate and load the content of the source if no sourceReference is specified (or its value is 0).

    *)
  3. source_reference : int option;
    (*

    If sourceReference > 0 the contents of the source must be retrieved through the SourceRequest (even if a path is specified). A sourceReference is only valid for a session, so it must not be used to persist a source. The value should be less than or equal to 2147483647 (2^31-1).

    *)
  4. presentation_hint : Presentation_hint.t option;
    (*

    An optional hint for how to present the source in the UI. A value of 'deemphasize' can be used to indicate that the source is not available or that it is skipped on stepping.

    *)
  5. origin : string option;
    (*

    The (optional) origin of this source: possible values 'internal module', 'inlined content from source map', etc.

    *)
  6. sources : t list option;
    (*

    An optional list of sources that are related to this source. These may be the source that generated this source.

    *)
  7. adapter_data : Any.t option;
    (*

    Optional data that a debug adapter might want to loop through the client. The client should leave the data intact and persist it across sessions. The client should not interpret the data.

    *)
  8. checksums : Checksum.t list option;
    (*

    The checksums associated with this file.

    *)
}

A Source is a descriptor for source code. It is returned from the debug adapter as part of a StackFrame and it is used by clients when specifying breakpoints.

Sourceval make : ?name:string option -> ?path:string option -> ?source_reference:int option -> ?presentation_hint:Presentation_hint.t option -> ?origin:string option -> ?sources:t list option -> ?adapter_data:Any.t option -> ?checksums:Checksum.t list option -> unit -> t
Sourceval to_yojson : t -> Yojson.Safe.t
OCaml

Innovation. Community. Security.