class LanguageServer::Protocol::Interface::CompletionParams

Attributes

attributes[R]

Public Class Methods

new(text_document:, position:, work_done_token: nil, partial_result_token: nil, context: nil) click to toggle source
# File lib/language_server/protocol/interface/completion_params.rb, line 5
def initialize(text_document:, position:, work_done_token: nil, partial_result_token: nil, context: nil)
  @attributes = {}

  @attributes[:textDocument] = text_document
  @attributes[:position] = position
  @attributes[:workDoneToken] = work_done_token if work_done_token
  @attributes[:partialResultToken] = partial_result_token if partial_result_token
  @attributes[:context] = context if context

  @attributes.freeze
end

Public Instance Methods

context() click to toggle source

The completion context. This is only available if the client specifies to send this using the client capability `completion.contextSupport === true`

@return [CompletionContext]

# File lib/language_server/protocol/interface/completion_params.rb, line 56
def context
  attributes.fetch(:context)
end
partial_result_token() click to toggle source

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

@return [ProgressToken]

# File lib/language_server/protocol/interface/completion_params.rb, line 46
def partial_result_token
  attributes.fetch(:partialResultToken)
end
position() click to toggle source

The position inside the text document.

@return [Position]

# File lib/language_server/protocol/interface/completion_params.rb, line 29
def position
  attributes.fetch(:position)
end
text_document() click to toggle source

The text document.

@return [TextDocumentIdentifier]

# File lib/language_server/protocol/interface/completion_params.rb, line 21
def text_document
  attributes.fetch(:textDocument)
end
to_hash() click to toggle source
# File lib/language_server/protocol/interface/completion_params.rb, line 62
def to_hash
  attributes
end
to_json(*args) click to toggle source
# File lib/language_server/protocol/interface/completion_params.rb, line 66
def to_json(*args)
  to_hash.to_json(*args)
end
work_done_token() click to toggle source

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

@return [ProgressToken]

# File lib/language_server/protocol/interface/completion_params.rb, line 37
def work_done_token
  attributes.fetch(:workDoneToken)
end