Sha256: 04f7ffbfcb6c37ed651b2cefaac0b2f0cb934a97c70b440332be82777e866ad8
Contents?: true
Size: 868 Bytes
Versions: 4
Compression:
Stored size: 868 Bytes
Contents
module LanguageServer module Protocol module Interface class DidChangeWatchedFilesClientCapabilities def initialize(dynamic_registration: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes.freeze end # # 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] def dynamic_registration attributes.fetch(:dynamicRegistration) end attr_reader :attributes def to_hash attributes end def to_json(*args) to_hash.to_json(*args) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems