Class: LanguageServer::Protocol::Interface::TextDocumentRegistrationOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::TextDocumentRegistrationOptions
- Defined in:
- lib/language_server/protocol/interface/text_document_registration_options.rb
Overview
General text document registration options.
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.
-
#initialize(document_selector:) ⇒ TextDocumentRegistrationOptions
constructor
A new instance of TextDocumentRegistrationOptions.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(document_selector:) ⇒ TextDocumentRegistrationOptions
Returns a new instance of TextDocumentRegistrationOptions.
8 9 10 11 12 13 14 |
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 8 def initialize(document_selector:) @attributes = {} @attributes[:documentSelector] = document_selector @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
25 26 27 |
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 25 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.
21 22 23 |
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 21 def document_selector attributes.fetch(:documentSelector) end |
#to_hash ⇒ Object
27 28 29 |
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 27 def to_hash attributes end |
#to_json(*args) ⇒ Object
31 32 33 |
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 31 def to_json(*args) to_hash.to_json(*args) end |