Class: LanguageServer::Protocol::Interface::DidChangeWatchedFilesClientCapabilities
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::DidChangeWatchedFilesClientCapabilities
- Defined in:
- lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#dynamic_registration ⇒ boolean
Did change watched files notification supports dynamic registration.
-
#initialize(dynamic_registration: nil, relative_pattern_support: nil) ⇒ DidChangeWatchedFilesClientCapabilities
constructor
A new instance of DidChangeWatchedFilesClientCapabilities.
-
#relative_pattern_support ⇒ boolean
Whether the client has support for relative patterns or not.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(dynamic_registration: nil, relative_pattern_support: nil) ⇒ DidChangeWatchedFilesClientCapabilities
Returns a new instance of DidChangeWatchedFilesClientCapabilities.
5 6 7 8 9 10 11 12 |
# File 'lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb', line 5 def initialize(dynamic_registration: nil, relative_pattern_support: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes[:relativePatternSupport] = relative_pattern_support if relative_pattern_support @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
33 34 35 |
# File 'lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb', line 33 def attributes @attributes end |
Instance Method Details
#dynamic_registration ⇒ boolean
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.
20 21 22 |
# File 'lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb', line 20 def dynamic_registration attributes.fetch(:dynamicRegistration) end |
#relative_pattern_support ⇒ boolean
Whether the client has support for relative patterns or not.
29 30 31 |
# File 'lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb', line 29 def relative_pattern_support attributes.fetch(:relativePatternSupport) end |
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |