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
Returns the value of attribute attributes.
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.
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
#attributes ⇒ Object (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_uri ⇒ string
A file:// URI for the new location of the file/folder being renamed.
29 30 31 |
# File 'lib/language_server/protocol/interface/file_rename.rb', line 29 def new_uri attributes.fetch(:newUri) end |
#old_uri ⇒ string
A file:// URI for the original location of the file/folder being renamed.
21 22 23 |
# File 'lib/language_server/protocol/interface/file_rename.rb', line 21 def old_uri attributes.fetch(:oldUri) end |
#to_hash ⇒ Object
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 |