Module Completions_command.Arguments

type t = {
frame_id : int option;

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

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.

column : int;

The character position for which to determine the completion proposals.

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
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or