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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(old_uri:, new_uri:) ⇒ FileRename

Returns a new instance of FileRename.



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

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

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

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



33
34
35
# File 'lib/language_server/protocol/interface/file_rename.rb', line 33

def attributes
  @attributes
end

Instance Method Details

#new_uristring

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

Returns:

  • (string)


29
30
31
# File 'lib/language_server/protocol/interface/file_rename.rb', line 29

def new_uri
  attributes.fetch(:newUri)
end

#old_uristring

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

Returns:

  • (string)


21
22
23
# File 'lib/language_server/protocol/interface/file_rename.rb', line 21

def old_uri
  attributes.fetch(:oldUri)
end

#to_hashObject



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

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



39
40
41
# File 'lib/language_server/protocol/interface/file_rename.rb', line 39

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