Class: LanguageServer::Protocol::Interface::CreateFilesParams
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::CreateFilesParams
- Defined in:
- lib/language_server/protocol/interface/create_files_params.rb
Overview
The parameters sent in notifications/requests for user-initiated creation of files.
Instance Attribute Summary collapse
- #attributes ⇒ Object readonly
Instance Method Summary collapse
-
#files ⇒ FileCreate[]
An array of all files/folders created in this operation.
-
#initialize(files:) ⇒ CreateFilesParams
constructor
A new instance of CreateFilesParams.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(files:) ⇒ CreateFilesParams
Returns a new instance of CreateFilesParams.
11 12 13 14 15 16 17 |
# File 'lib/language_server/protocol/interface/create_files_params.rb', line 11 def initialize(files:) @attributes = {} @attributes[:files] = files @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
27 28 29 |
# File 'lib/language_server/protocol/interface/create_files_params.rb', line 27 def attributes @attributes end |
Instance Method Details
#files ⇒ FileCreate[]
An array of all files/folders created in this operation.
23 24 25 |
# File 'lib/language_server/protocol/interface/create_files_params.rb', line 23 def files attributes.fetch(:files) end |
#to_hash ⇒ Object
29 30 31 |
# File 'lib/language_server/protocol/interface/create_files_params.rb', line 29 def to_hash attributes end |
#to_json(*args) ⇒ Object
33 34 35 |
# File 'lib/language_server/protocol/interface/create_files_params.rb', line 33 def to_json(*args) to_hash.to_json(*args) end |