Class: LanguageServer::Protocol::Interface::DeleteFilesParams
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::DeleteFilesParams
- Defined in:
- lib/language_server/protocol/interface/delete_files_params.rb
Overview
The parameters sent in notifications/requests for user-initiated deletes of files.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#files ⇒ FileDelete[]
An array of all files/folders deleted in this operation.
-
#initialize(files:) ⇒ DeleteFilesParams
constructor
A new instance of DeleteFilesParams.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(files:) ⇒ DeleteFilesParams
Returns a new instance of DeleteFilesParams.
9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/delete_files_params.rb', line 9 def initialize(files:) @attributes = {} @attributes[:files] = files @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
25 26 27 |
# File 'lib/language_server/protocol/interface/delete_files_params.rb', line 25 def attributes @attributes end |
Instance Method Details
#files ⇒ FileDelete[]
An array of all files/folders deleted in this operation.
21 22 23 |
# File 'lib/language_server/protocol/interface/delete_files_params.rb', line 21 def files attributes.fetch(:files) end |
#to_hash ⇒ Object
27 28 29 |
# File 'lib/language_server/protocol/interface/delete_files_params.rb', line 27 def to_hash attributes end |
#to_json(*args) ⇒ Object
31 32 33 |
# File 'lib/language_server/protocol/interface/delete_files_params.rb', line 31 def to_json(*args) to_hash.to_json(*args) end |