package dap

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Debug_protocol.Step_in_targetSource

Sourcetype 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.

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