Class: LanguageServer::Protocol::Interface::StaticRegistrationOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::StaticRegistrationOptions
- Defined in:
- lib/language_server/protocol/interface/static_registration_options.rb
Overview
Static registration options to be returned in the initialize request.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#id ⇒ string
The id used to register the request.
-
#initialize(id: nil) ⇒ StaticRegistrationOptions
constructor
A new instance of StaticRegistrationOptions.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(id: nil) ⇒ StaticRegistrationOptions
Returns a new instance of StaticRegistrationOptions.
8 9 10 11 12 13 14 |
# File 'lib/language_server/protocol/interface/static_registration_options.rb', line 8 def initialize(id: nil) @attributes = {} @attributes[:id] = id if id @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
25 26 27 |
# File 'lib/language_server/protocol/interface/static_registration_options.rb', line 25 def attributes @attributes end |
Instance Method Details
#id ⇒ string
The id used to register the request. The id can be used to deregister the request again. See also Registration#id.
21 22 23 |
# File 'lib/language_server/protocol/interface/static_registration_options.rb', line 21 def id attributes.fetch(:id) end |
#to_hash ⇒ Object
27 28 29 |
# File 'lib/language_server/protocol/interface/static_registration_options.rb', line 27 def to_hash attributes end |
#to_json(*args) ⇒ Object
31 32 33 |
# File 'lib/language_server/protocol/interface/static_registration_options.rb', line 31 def to_json(*args) to_hash.to_json(*args) end |