Class: LanguageServer::Protocol::Interface::FileRename

Inherits:
Object
  • Object
show all
Defined in:
lib/language_server/protocol/interface/file_rename.rb

Overview

Represents information on a file/folder rename.

Since:

  • 3.16.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(old_uri:, new_uri:) ⇒ FileRename

Returns a new instance of FileRename.

Since:

  • 3.16.0



10
11
12
13
14
15
16
17
# File 'lib/language_server/protocol/interface/file_rename.rb', line 10

def initialize(old_uri:, new_uri:)
  @attributes = {}

  @attributes[:oldUri] = old_uri
  @attributes[:newUri] = new_uri

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Since:

  • 3.16.0



35
36
37
# File 'lib/language_server/protocol/interface/file_rename.rb', line 35

def attributes
  @attributes
end

Instance Method Details

#new_uristring

A file:// URI for the new location of the file/folder being renamed.

Returns:

  • (string)

Since:

  • 3.16.0



31
32
33
# File 'lib/language_server/protocol/interface/file_rename.rb', line 31

def new_uri
  attributes.fetch(:newUri)
end

#old_uristring

A file:// URI for the original location of the file/folder being renamed.

Returns:

  • (string)

Since:

  • 3.16.0



23
24
25
# File 'lib/language_server/protocol/interface/file_rename.rb', line 23

def old_uri
  attributes.fetch(:oldUri)
end

#to_hashObject

Since:

  • 3.16.0



37
38
39
# File 'lib/language_server/protocol/interface/file_rename.rb', line 37

def to_hash
  attributes
end

#to_json(*args) ⇒ Object

Since:

  • 3.16.0



41
42
43
# File 'lib/language_server/protocol/interface/file_rename.rb', line 41

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