package dap

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

    Unique identifier for a stepIn target.

    *)
  2. label : string;
    (*

    The name of the stepIn target (shown in the UI).

    *)
}

A StepInTarget can be used in the 'stepIn' request and determines into which single target the stepIn request should step.

val make : id:int -> label:string -> t
val to_yojson : t -> Yojson.Safe.t