Class: LanguageServer::Protocol::Interface::WillSaveTextDocumentParams
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::WillSaveTextDocumentParams
- Defined in:
- lib/language_server/protocol/interface/will_save_text_document_params.rb
Overview
The parameters send in a will save text document notification.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(text_document:, reason:) ⇒ WillSaveTextDocumentParams
constructor
A new instance of WillSaveTextDocumentParams.
-
#reason ⇒ TextDocumentSaveReason
The ‘TextDocumentSaveReason’.
-
#text_document ⇒ TextDocumentIdentifier
The document that will be saved.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(text_document:, reason:) ⇒ WillSaveTextDocumentParams
Returns a new instance of WillSaveTextDocumentParams.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 8 def initialize(text_document:, reason:) @attributes = {} @attributes[:textDocument] = text_document @attributes[:reason] = reason @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
33 34 35 |
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 33 def attributes @attributes end |
Instance Method Details
#reason ⇒ TextDocumentSaveReason
The ‘TextDocumentSaveReason’.
29 30 31 |
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 29 def reason attributes.fetch(:reason) end |
#text_document ⇒ TextDocumentIdentifier
The document that will be saved.
21 22 23 |
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 21 def text_document attributes.fetch(:textDocument) end |
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |