Sha256: 0f6d7e30f6c058eead3e8452e551d0bc5ca5af58362cf0e89484f533db26619e

Contents?: true

Size: 980 Bytes

Versions: 2

Compression:

Stored size: 980 Bytes

Contents

module LanguageServer
  module Protocol
    module Interface
      #
      # A document highlight is a range inside a text document which deserves
      # special attention. Usually a document highlight is visualized by changing
      # the background color of its range.
      #
      class DocumentHighlight
        def initialize(range:, kind: nil)
          @attributes = {}

          @attributes[:range] = range
          @attributes[:kind] = kind if kind

          @attributes.freeze
        end

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

        #
        # The highlight kind, default is DocumentHighlightKind.Text.
        #
        # @return [number]
        def kind
          attributes.fetch(:kind)
        end

        attr_reader :attributes

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
language_server-protocol-0.4.0 lib/language_server/protocol/interface/document_highlight.rb
language_server-protocol-0.3.0 lib/language_server/protocol/interface/document_highlight.rb