Sha256: 8d4f3b454d7a212d11d138fc1fa0776fcd05eb45f0f7b775207262e650c77d86

Contents?: true

Size: 1.17 KB

Versions: 5

Compression:

Stored size: 1.17 KB

Contents

module LanguageServer
  module Protocol
    module Interface
      class RenameParams
        def initialize(text_document:, position:, new_name:)
          @attributes = {}

          @attributes[:textDocument] = text_document
          @attributes[:position] = position
          @attributes[:newName] = new_name

          @attributes.freeze
        end

        #
        # The document to rename.
        #
        # @return [TextDocumentIdentifier]
        def text_document
          attributes.fetch(:textDocument)
        end

        #
        # The position at which this request was sent.
        #
        # @return [Position]
        def position
          attributes.fetch(:position)
        end

        #
        # The new name of the symbol. If the given name is not valid the
        # request must return a [ResponseError](#ResponseError) with an
        # appropriate message set.
        #
        # @return [string]
        def new_name
          attributes.fetch(:newName)
        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

5 entries across 5 versions & 1 rubygems

Version Path
language_server-protocol-3.14.0.2 lib/language_server/protocol/interface/rename_params.rb
language_server-protocol-3.14.0.1 lib/language_server/protocol/interface/rename_params.rb
language_server-protocol-3.14.0.0 lib/language_server/protocol/interface/rename_params.rb
language_server-protocol-3.12.0.0 lib/language_server/protocol/interface/rename_params.rb
language_server-protocol-3.7.0.0 lib/language_server/protocol/interface/rename_params.rb