package dap

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

    Set the goto target for this thread.

    *)
  2. target_id : int;
    (*

    The location where the debuggee will continue to run.

    *)
}

Arguments for 'goto' request.

val make : thread_id:int -> target_id:int -> t
val to_yojson : t -> Yojson.Safe.t