package dap

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

    Returns completions in the scope of this stack frame. If not specified, the completions are returned for the global scope.

    *)
  2. text : string;
    (*

    One or more source lines. Typically this is the text a user has typed into the debug console before he asked for completion.

    *)
  3. column : int;
    (*

    The character position for which to determine the completion proposals.

    *)
  4. line : int option;
    (*

    An optional line for which to determine the completion proposals. If missing the first line of the text is assumed.

    *)
}

Arguments for 'completions' request.

val make : ?frame_id:int option -> text:string -> column:int -> ?line:int option -> unit -> t
val to_yojson : t -> Yojson.Safe.t