class LSProtocol::DocumentHighlightParams

Overview

Parameters for a DocumentHighlightRequest.

Included Modules

Defined in:

lsprotocol/types.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(position : Position | Nil, text_document : TextDocumentIdentifier | Nil, partial_result_token : ProgressToken | Nil = nil, work_done_token : ProgressToken | Nil = nil) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]

Instance Method Detail

def partial_result_token : ProgressToken | Nil #

An optional token that a server can use to report partial results (e.g. streaming) to the client.


[View source]
def position : Position #

The position inside the text document.


[View source]
def text_document : TextDocumentIdentifier #

The text document.


[View source]
def work_done_token : ProgressToken | Nil #

An optional token that a server can use to report work done progress.


[View source]