lib/language_server/protocol/interface/annotated_text_edit.rb



module LanguageServer
  module Protocol
    module Interface
      #
      # A special text edit with an additional change annotation.
      #
      class AnnotatedTextEdit
        def initialize(range:, new_text:, annotation_id:)
          @attributes = {}

          @attributes[:range] = range
          @attributes[:newText] = new_text
          @attributes[:annotationId] = annotation_id

          @attributes.freeze
        end

        #
        # The range of the text document to be manipulated. To insert
        # text into a document create a range where start === end.
        #
        # @return [Range]
        def range
          attributes.fetch(:range)
        end

        #
        # The string to be inserted. For delete operations use an
        # empty string.
        #
        # @return [string]
        def new_text
          attributes.fetch(:newText)
        end

        #
        # The actual annotation identifier.
        #
        # @return [string]
        def annotation_id
          attributes.fetch(:annotationId)
        end

        attr_reader :attributes

        def to_hash
          attributes
        end

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