class LanguageServer::Protocol::Interface::SemanticTokensOptions

Attributes

attributes[R]

Public Class Methods

new(work_done_progress: nil, legend:, range: nil, full: nil) click to toggle source
# File lib/language_server/protocol/interface/semantic_tokens_options.rb, line 5
def initialize(work_done_progress: nil, legend:, range: nil, full: nil)
  @attributes = {}

  @attributes[:workDoneProgress] = work_done_progress if work_done_progress
  @attributes[:legend] = legend
  @attributes[:range] = range if range
  @attributes[:full] = full if full

  @attributes.freeze
end

Public Instance Methods

full() click to toggle source

Server supports providing semantic tokens for a full document.

@return [boolean | { delta?: boolean; }]

# File lib/language_server/protocol/interface/semantic_tokens_options.rb, line 42
def full
  attributes.fetch(:full)
end
legend() click to toggle source

The legend used by the server

@return [SemanticTokensLegend]

# File lib/language_server/protocol/interface/semantic_tokens_options.rb, line 25
def legend
  attributes.fetch(:legend)
end
range() click to toggle source

Server supports providing semantic tokens for a specific range of a document.

@return [boolean | {}]

# File lib/language_server/protocol/interface/semantic_tokens_options.rb, line 34
def range
  attributes.fetch(:range)
end
to_hash() click to toggle source
# File lib/language_server/protocol/interface/semantic_tokens_options.rb, line 48
def to_hash
  attributes
end
to_json(*args) click to toggle source
# File lib/language_server/protocol/interface/semantic_tokens_options.rb, line 52
def to_json(*args)
  to_hash.to_json(*args)
end
work_done_progress() click to toggle source

@return [boolean]

# File lib/language_server/protocol/interface/semantic_tokens_options.rb, line 17
def work_done_progress
  attributes.fetch(:workDoneProgress)
end