View Source GenLSP.Structures.InlineValueParams (gen_lsp v0.8.1)

A parameter literal used in inline value requests.

@since 3.17.0

Link to this section Summary

Functions

Fields

  • text_document: The text document.
  • range: The document range for which inline values should be computed.
  • context: Additional information about the context in which inline values were requested.
  • work_done_token: An optional token that a server can use to report work done progress.

Link to this section Types

@type t() :: %GenLSP.Structures.InlineValueParams{
  context: GenLSP.Structures.InlineValueContext.t(),
  range: GenLSP.Structures.Range.t(),
  text_document: GenLSP.Structures.TextDocumentIdentifier.t(),
  work_done_token: GenLSP.TypeAlias.ProgressToken.t() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.InlineValueParams{}

View Source (struct)

fields

Fields

  • text_document: The text document.
  • range: The document range for which inline values should be computed.
  • context: Additional information about the context in which inline values were requested.
  • work_done_token: An optional token that a server can use to report work done progress.