class LanguageServer::Protocol::Interface::RenameRegistrationOptions
Attributes
attributes[R]
Public Class Methods
new(document_selector:, work_done_progress: nil, prepare_provider: nil)
click to toggle source
# File lib/language_server/protocol/interface/rename_registration_options.rb, line 5 def initialize(document_selector:, work_done_progress: nil, prepare_provider: nil) @attributes = {} @attributes[:documentSelector] = document_selector @attributes[:workDoneProgress] = work_done_progress if work_done_progress @attributes[:prepareProvider] = prepare_provider if prepare_provider @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/rename_registration_options.rb, line 20 def document_selector attributes.fetch(:documentSelector) end
prepare_provider()
click to toggle source
Renames should be checked and tested before being executed.
@return [boolean]
# File lib/language_server/protocol/interface/rename_registration_options.rb, line 33 def prepare_provider attributes.fetch(:prepareProvider) end
to_hash()
click to toggle source
# File lib/language_server/protocol/interface/rename_registration_options.rb, line 39 def to_hash attributes end
to_json(*args)
click to toggle source
# File lib/language_server/protocol/interface/rename_registration_options.rb, line 43 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/rename_registration_options.rb, line 25 def work_done_progress attributes.fetch(:workDoneProgress) end