package dap

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

    The source location for which the goto targets are determined.

    *)
  2. line : int;
    (*

    The line location for which the goto targets are determined.

    *)
  3. column : int option;
    (*

    An optional column location for which the goto targets are determined.

    *)
}

Arguments for 'gotoTargets' request.

val make : source:Source.t -> line:int -> ?column:int option -> unit -> t
val to_yojson : t -> Yojson.Safe.t