package dap

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

    An identifier for the stack frame. It must be unique across all threads. This id can be used to retrieve the scopes of the frame with the 'scopesRequest' or to restart the execution of a stackframe.

    *)
  2. name : string;
    (*

    The name of the stack frame, typically a method name.

    *)
  3. source : Source.t option;
    (*

    The optional source of the frame.

    *)
  4. line : int;
    (*

    The line within the file of the frame. If source is null or doesn't exist, line is 0 and must be ignored.

    *)
  5. column : int;
    (*

    The column within the line. If source is null or doesn't exist, column is 0 and must be ignored.

    *)
  6. end_line : int option;
    (*

    An optional end line of the range covered by the stack frame.

    *)
  7. end_column : int option;
    (*

    An optional end column of the range covered by the stack frame.

    *)
  8. instruction_pointer_reference : string option;
    (*

    Optional memory reference for the current instruction pointer in this frame.

    *)
  9. module_id : Int_or_string.t option;
    (*

    The module associated with this frame, if any.

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

    An optional hint for how to present this frame in the UI. A value of 'label' can be used to indicate that the frame is an artificial frame that is used as a visual label or separator. A value of 'subtle' can be used to change the appearance of a frame in a 'subtle' way.

    *)
}

A Stackframe contains the source location.

val make : id:int -> name:string -> ?source:Source.t option -> line:int -> column:int -> ?end_line:int option -> ?end_column:int option -> ?instruction_pointer_reference:string option -> ?module_id:Int_or_string.t option -> ?presentation_hint:Presentation_hint.t option -> unit -> t
val to_yojson : t -> Yojson.Safe.t