View Source GenLSP.Structures.SemanticTokensDeltaParams (gen_lsp v0.10.0)
@since 3.16.0
Link to this section Summary
Functions
Fields
- text_document: The text document.
- previous_result_id: The result id of a previous response. The result Id can either point to a full response or a delta response depending on what was received last.
- work_done_token: An optional token that a server can use to report work done progress.
- partial_result_token: An optional token that a server can use to report partial results (e.g. streaming) to the client.
Link to this section Types
@type t() :: %GenLSP.Structures.SemanticTokensDeltaParams{ partial_result_token: GenLSP.TypeAlias.ProgressToken.t() | nil, previous_result_id: String.t(), text_document: GenLSP.Structures.TextDocumentIdentifier.t(), work_done_token: GenLSP.TypeAlias.ProgressToken.t() | nil }
Link to this section Functions
fields
Fields
- text_document: The text document.
- previous_result_id: The result id of a previous response. The result Id can either point to a full response or a delta response depending on what was received last.
- work_done_token: An optional token that a server can use to report work done progress.
- partial_result_token: An optional token that a server can use to report partial results (e.g. streaming) to the client.