Class: LanguageServer::Protocol::Interface::FileEvent
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::FileEvent
- Defined in:
- lib/language_server/protocol/interface/file_event.rb
Overview
An event describing a file change.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(uri:, type:) ⇒ FileEvent
constructor
A new instance of FileEvent.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
-
#type ⇒ number
The change type.
-
#uri ⇒ string
The file’s URI.
Constructor Details
#initialize(uri:, type:) ⇒ FileEvent
Returns a new instance of FileEvent.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/file_event.rb', line 8 def initialize(uri:, type:) @attributes = {} @attributes[:uri] = uri @attributes[:type] = type @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_event.rb', line 33 def attributes @attributes end |
Instance Method Details
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/file_event.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/file_event.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |
#type ⇒ number
The change type.
29 30 31 |
# File 'lib/language_server/protocol/interface/file_event.rb', line 29 def type attributes.fetch(:type) end |
#uri ⇒ string
The file’s URI.
21 22 23 |
# File 'lib/language_server/protocol/interface/file_event.rb', line 21 def uri attributes.fetch(:uri) end |