package dap

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

    If noDebug is true the launch request should launch the program without enabling debugging.

    *)
  2. __restart : Any.t option;
    (*

    Optional data from the previous, restarted session. The data is sent as the 'restart' attribute of the 'terminated' event. The client should leave the data intact.

    *)
}

Arguments for 'launch' request. Additional attributes are implementation specific.

val make : ?no_debug:bool option -> ?__restart:Any.t option -> unit -> t
val to_yojson : t -> Yojson.Safe.t