package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. source : Source.t option;
    (*

    Specifies the source content to load. Either source.path or source.sourceReference must be specified.

    *)
  2. source_reference : int;
    (*

    The reference to the source. This is the same as source.sourceReference. This is provided for backward compatibility since old backends do not understand the 'source' attribute.

    *)
}

Arguments for 'source' request.

val make : ?source:Source.t option -> source_reference:int -> unit -> t
val to_yojson : t -> Yojson.Safe.t