Class: LanguageServer::Protocol::Interface::FileRename
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::FileRename
- Defined in:
- lib/language_server/protocol/interface/file_rename.rb
Overview
Represents information on a file/folder rename.
Instance Attribute Summary collapse
- #attributes ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(old_uri:, new_uri:) ⇒ FileRename
constructor
A new instance of FileRename.
-
#new_uri ⇒ string
A file:// URI for the new location of the file/folder being renamed.
-
#old_uri ⇒ string
A file:// URI for the original location of the file/folder being renamed.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(old_uri:, new_uri:) ⇒ FileRename
Returns a new instance of FileRename.
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
#attributes ⇒ Object (readonly)
35 36 37 |
# File 'lib/language_server/protocol/interface/file_rename.rb', line 35 def attributes @attributes end |
Instance Method Details
#new_uri ⇒ string
A file:// URI for the new location of the file/folder being renamed.
31 32 33 |
# File 'lib/language_server/protocol/interface/file_rename.rb', line 31 def new_uri attributes.fetch(:newUri) end |
#old_uri ⇒ string
A file:// URI for the original location of the file/folder being renamed.
23 24 25 |
# File 'lib/language_server/protocol/interface/file_rename.rb', line 23 def old_uri attributes.fetch(:oldUri) end |
#to_hash ⇒ Object
37 38 39 |
# File 'lib/language_server/protocol/interface/file_rename.rb', line 37 def to_hash attributes end |
#to_json(*args) ⇒ Object
41 42 43 |
# File 'lib/language_server/protocol/interface/file_rename.rb', line 41 def to_json(*args) to_hash.to_json(*args) end |