lib/language_server/protocol/interface/show_document_client_capabilities.rb



module LanguageServer
  module Protocol
    module Interface
      #
      # Client capabilities for the show document request.
      #
      class ShowDocumentClientCapabilities
        def initialize(support:)
          @attributes = {}

          @attributes[:support] = support

          @attributes.freeze
        end

        #
        # The client has support for the show document
        # request.
        #
        # @return [boolean]
        def support
          attributes.fetch(:support)
        end

        attr_reader :attributes

        def to_hash
          attributes
        end

        def to_json(*args)
          to_hash.to_json(*args)
        end
      end
    end
  end
end