Sha256: 44dc55397ecd725800d22fa5baca89ee98bdafbdbeea5ad7aa0747057e21a323

Contents?: true

Size: 1.77 KB

Versions: 4

Compression:

Stored size: 1.77 KB

Contents

module LanguageServer
  module Protocol
    module Interface
      #
      # A document link is a range in a text document that links to an internal or
      # external resource, like another text document or a web site.
      #
      class DocumentLink
        def initialize(range:, target: nil, tooltip: nil, data: nil)
          @attributes = {}

          @attributes[:range] = range
          @attributes[:target] = target if target
          @attributes[:tooltip] = tooltip if tooltip
          @attributes[:data] = data if data

          @attributes.freeze
        end

        #
        # The range this link applies to.
        #
        # @return [Range]
        def range
          attributes.fetch(:range)
        end

        #
        # The uri this link points to. If missing a resolve request is sent later.
        #
        # @return [string]
        def target
          attributes.fetch(:target)
        end

        #
        # The tooltip text when you hover over this link.
        #
        # If a tooltip is provided, is will be displayed in a string that includes
        # instructions on how to trigger the link, such as `{0} (ctrl + click)`.
        # The specific instructions vary depending on OS, user settings, and
        # localization.
        #
        # @return [string]
        def tooltip
          attributes.fetch(:tooltip)
        end

        #
        # A data entry field that is preserved on a document link between a
        # DocumentLinkRequest and a DocumentLinkResolveRequest.
        #
        # @return [any]
        def data
          attributes.fetch(:data)
        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/document_link.rb
language_server-protocol-3.16.0.2 lib/language_server/protocol/interface/document_link.rb
language_server-protocol-3.16.0.1 lib/language_server/protocol/interface/document_link.rb
language_server-protocol-3.16.0.0 lib/language_server/protocol/interface/document_link.rb