package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. thread_id : int;
    (*

    The thread which was continued.

    *)
  2. all_threads_continued : bool option;
    (*

    If 'allThreadsContinued' is true, a debug adapter can announce that all threads have continued.

    *)
}
val make : thread_id:int -> ?all_threads_continued:bool option -> unit -> t
val to_yojson : t -> Yojson.Safe.t