package dap

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

    A debug adapter may set 'restart' to true (or to an arbitrary object) to request that the front end restarts the session. The value is not interpreted by the client and passed unmodified as an attribute '__restart' to the 'launch' and 'attach' requests.

    *)
}
val make : ?restart:Any.t option -> unit -> t
val to_yojson : t -> Yojson.Safe.t