class LanguageServer::Protocol::Interface::DocumentColorRegistrationOptions
Attributes
attributes[R]
Public Class Methods
new(document_selector:, id: nil, work_done_progress: nil)
click to toggle source
# File lib/language_server/protocol/interface/document_color_registration_options.rb, line 5 def initialize(document_selector:, id: nil, work_done_progress: nil) @attributes = {} @attributes[:documentSelector] = document_selector @attributes[:id] = id if id @attributes[:workDoneProgress] = work_done_progress if work_done_progress @attributes.freeze end
Public Instance Methods
document_selector()
click to toggle source
A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.
@return [DocumentSelector]
# File lib/language_server/protocol/interface/document_color_registration_options.rb, line 20 def document_selector attributes.fetch(:documentSelector) end
id()
click to toggle source
The id used to register the request. The id can be used to deregister the request again. See also Registration#id
.
@return [string]
# File lib/language_server/protocol/interface/document_color_registration_options.rb, line 29 def id attributes.fetch(:id) end
to_hash()
click to toggle source
# File lib/language_server/protocol/interface/document_color_registration_options.rb, line 40 def to_hash attributes end
to_json(*args)
click to toggle source
# File lib/language_server/protocol/interface/document_color_registration_options.rb, line 44 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/document_color_registration_options.rb, line 34 def work_done_progress attributes.fetch(:workDoneProgress) end