class LanguageServer::Protocol::Interface::DidChangeWatchedFilesClientCapabilities
Attributes
attributes[R]
Public Class Methods
new(dynamic_registration: nil)
click to toggle source
# File lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb, line 5 def initialize(dynamic_registration: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes.freeze end
Public Instance Methods
dynamic_registration()
click to toggle source
Did change watched files notification supports dynamic registration. Please note that the current protocol doesn't support static configuration for file changes from the server side.
@return [boolean]
# File lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb, line 19 def dynamic_registration attributes.fetch(:dynamicRegistration) end
to_hash()
click to toggle source
# File lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb, line 25 def to_hash attributes end
to_json(*args)
click to toggle source
# File lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb, line 29 def to_json(*args) to_hash.to_json(*args) end