package dap

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

    Execute 'stepBack' for this thread.

    *)
  2. granularity : Stepping_granularity.t option;
    (*

    Optional granularity to step. If no granularity is specified, a granularity of 'statement' is assumed.

    *)
}

Arguments for 'stepBack' request.

val make : thread_id:int -> ?granularity:Stepping_granularity.t option -> unit -> t
val to_yojson : t -> Yojson.Safe.t