package dap

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

    The reason for the event.

    *)
  2. breakpoint : Breakpoint.t;
    (*

    The 'id' attribute is used to find the target breakpoint and the other attributes are used as the new values.

    *)
}
val make : reason:Reason.t -> breakpoint:Breakpoint.t -> t
val to_yojson : t -> Yojson.Safe.t