Sha256: bc085669c8a2f17af77c7879490cc2e910e1091d37a59cb485dcfb3b28ecdd97

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

module LanguageServer
  module Protocol
    module Interface
      class HoverClientCapabilities
        def initialize(dynamic_registration: nil, content_format: nil)
          @attributes = {}

          @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration
          @attributes[:contentFormat] = content_format if content_format

          @attributes.freeze
        end

        #
        # Whether hover supports dynamic registration.
        #
        # @return [boolean]
        def dynamic_registration
          attributes.fetch(:dynamicRegistration)
        end

        #
        # Client supports the following content formats if the content
        # property refers to a `literal of type MarkupContent`.
        # The order describes the preferred format of the client.
        #
        # @return [MarkupKind[]]
        def content_format
          attributes.fetch(:contentFormat)
        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/hover_client_capabilities.rb
language_server-protocol-3.16.0.2 lib/language_server/protocol/interface/hover_client_capabilities.rb
language_server-protocol-3.16.0.1 lib/language_server/protocol/interface/hover_client_capabilities.rb
language_server-protocol-3.16.0.0 lib/language_server/protocol/interface/hover_client_capabilities.rb