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

Version Path
language_server-protocol-3.16.0.3 lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb
language_server-protocol-3.16.0.2 lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb
language_server-protocol-3.16.0.1 lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb
language_server-protocol-3.16.0.0 lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb