Class: LanguageServer::Protocol::Interface::RenameFile
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::RenameFile
- Defined in:
- lib/language_server/protocol/interface/rename_file.rb
Overview
Rename file operation
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#annotation_id ⇒ string
An optional annotation identifier describing the operation.
-
#initialize(kind:, old_uri:, new_uri:, options: nil, annotation_id: nil) ⇒ RenameFile
constructor
A new instance of RenameFile.
-
#kind ⇒ "rename"
A rename.
-
#new_uri ⇒ string
The new location.
-
#old_uri ⇒ string
The old (existing) location.
-
#options ⇒ RenameFileOptions
Rename options.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(kind:, old_uri:, new_uri:, options: nil, annotation_id: nil) ⇒ RenameFile
Returns a new instance of RenameFile.
8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 8 def initialize(kind:, old_uri:, new_uri:, options: nil, annotation_id: nil) @attributes = {} @attributes[:kind] = kind @attributes[:oldUri] = old_uri @attributes[:newUri] = new_uri @attributes[:options] = if @attributes[:annotationId] = annotation_id if annotation_id @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
60 61 62 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 60 def attributes @attributes end |
Instance Method Details
#annotation_id ⇒ string
An optional annotation identifier describing the operation.
56 57 58 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 56 def annotation_id attributes.fetch(:annotationId) end |
#kind ⇒ "rename"
A rename
24 25 26 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 24 def kind attributes.fetch(:kind) end |
#new_uri ⇒ string
The new location.
40 41 42 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 40 def new_uri attributes.fetch(:newUri) end |
#old_uri ⇒ string
The old (existing) location.
32 33 34 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 32 def old_uri attributes.fetch(:oldUri) end |
#options ⇒ RenameFileOptions
Rename options.
48 49 50 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 48 def attributes.fetch(:options) end |
#to_hash ⇒ Object
62 63 64 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 62 def to_hash attributes end |
#to_json(*args) ⇒ Object
66 67 68 |
# File 'lib/language_server/protocol/interface/rename_file.rb', line 66 def to_json(*args) to_hash.to_json(*args) end |