Class: LanguageServer::Protocol::Interface::TextDocumentSaveRegistrationOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::TextDocumentSaveRegistrationOptions
- Defined in:
- lib/language_server/protocol/interface/text_document_save_registration_options.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#document_selector ⇒ DocumentSelector
A document selector to identify the scope of the registration.
-
#include_text ⇒ boolean
The client is supposed to include the content on save.
-
#initialize(document_selector:, include_text: nil) ⇒ TextDocumentSaveRegistrationOptions
constructor
A new instance of TextDocumentSaveRegistrationOptions.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(document_selector:, include_text: nil) ⇒ TextDocumentSaveRegistrationOptions
Returns a new instance of TextDocumentSaveRegistrationOptions.
5 6 7 8 9 10 11 12 |
# File 'lib/language_server/protocol/interface/text_document_save_registration_options.rb', line 5 def initialize(document_selector:, include_text: nil) @attributes = {} @attributes[:documentSelector] = document_selector @attributes[:includeText] = include_text if include_text @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
31 32 33 |
# File 'lib/language_server/protocol/interface/text_document_save_registration_options.rb', line 31 def attributes @attributes end |
Instance Method Details
#document_selector ⇒ DocumentSelector
A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.
19 20 21 |
# File 'lib/language_server/protocol/interface/text_document_save_registration_options.rb', line 19 def document_selector attributes.fetch(:documentSelector) end |
#include_text ⇒ boolean
The client is supposed to include the content on save.
27 28 29 |
# File 'lib/language_server/protocol/interface/text_document_save_registration_options.rb', line 27 def include_text attributes.fetch(:includeText) end |
#to_hash ⇒ Object
33 34 35 |
# File 'lib/language_server/protocol/interface/text_document_save_registration_options.rb', line 33 def to_hash attributes end |
#to_json(*args) ⇒ Object
37 38 39 |
# File 'lib/language_server/protocol/interface/text_document_save_registration_options.rb', line 37 def to_json(*args) to_hash.to_json(*args) end |