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/Module/index.html

Module Debug_protocol.ModuleSource

Sourcetype t = {
  1. id : Int_or_string.t;
    (*

    Unique identifier for the module.

    *)
  2. name : string;
    (*

    A name of the module.

    *)
  3. path : string option;
    (*

    optional but recommended attributes. always try to use these first before introducing additional attributes.

    Logical full path to the module. The exact definition is implementation defined, but usually this would be a full path to the on-disk file for the module.

    *)
  4. is_optimized : bool option;
    (*

    True if the module is optimized.

    *)
  5. is_user_code : bool option;
    (*

    True if the module is considered 'user code' by a debugger that supports 'Just My Code'.

    *)
  6. version : string option;
    (*

    Version of Module.

    *)
  7. symbol_status : string option;
    (*

    User understandable description of if symbols were found for the module (ex: 'Symbols Loaded', 'Symbols not found', etc.

    *)
  8. symbol_file_path : string option;
    (*

    Logical full path to the symbol file. The exact definition is implementation defined.

    *)
  9. date_time_stamp : string option;
    (*

    Module created or modified.

    *)
  10. address_range : string option;
    (*

    Address range covered by this module.

    *)
}

A Module object represents a row in the modules view. Two attributes are mandatory: an id identifies a module in the modules view and is used in a ModuleEvent for identifying a module for adding, updating or deleting. The name is used to minimally render the module in the UI.

Additional attributes can be added to the module. They will show up in the module View if they have a corresponding ColumnDescriptor.

To avoid an unnecessary proliferation of additional attributes with similar semantics but different names we recommend to re-use attributes from the 'recommended' list below first, and only introduce new attributes if nothing appropriate could be found.

Sourceval make : id:Int_or_string.t -> name:string -> ?path:string option -> ?is_optimized:bool option -> ?is_user_code:bool option -> ?version:string option -> ?symbol_status:string option -> ?symbol_file_path:string option -> ?date_time_stamp:string option -> ?address_range:string option -> unit -> t
Sourceval to_yojson : t -> Yojson.Safe.t
OCaml

Innovation. Community. Security.