Class: LanguageServer::Protocol::Interface::WorkspaceFoldersChangeEvent
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::WorkspaceFoldersChangeEvent
- Defined in:
- lib/language_server/protocol/interface/workspace_folders_change_event.rb
Overview
The workspace folder change event.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#added ⇒ WorkspaceFolder[]
The array of added workspace folders.
-
#initialize(added:, removed:) ⇒ WorkspaceFoldersChangeEvent
constructor
A new instance of WorkspaceFoldersChangeEvent.
-
#removed ⇒ WorkspaceFolder[]
The array of the removed workspace folders.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(added:, removed:) ⇒ WorkspaceFoldersChangeEvent
Returns a new instance of WorkspaceFoldersChangeEvent.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/workspace_folders_change_event.rb', line 8 def initialize(added:, removed:) @attributes = {} @attributes[:added] = added @attributes[:removed] = removed @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
33 34 35 |
# File 'lib/language_server/protocol/interface/workspace_folders_change_event.rb', line 33 def attributes @attributes end |
Instance Method Details
#added ⇒ WorkspaceFolder[]
The array of added workspace folders
21 22 23 |
# File 'lib/language_server/protocol/interface/workspace_folders_change_event.rb', line 21 def added attributes.fetch(:added) end |
#removed ⇒ WorkspaceFolder[]
The array of the removed workspace folders
29 30 31 |
# File 'lib/language_server/protocol/interface/workspace_folders_change_event.rb', line 29 def removed attributes.fetch(:removed) end |
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/workspace_folders_change_event.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/workspace_folders_change_event.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |