Class: LanguageServer::Protocol::Interface::InlayHintClientCapabilities
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::InlayHintClientCapabilities
- Defined in:
- lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb
Overview
Inlay hint client capabilities.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#dynamic_registration ⇒ boolean
Whether inlay hints support dynamic registration.
-
#initialize(dynamic_registration: nil, resolve_support: nil) ⇒ InlayHintClientCapabilities
constructor
A new instance of InlayHintClientCapabilities.
-
#resolve_support ⇒ { properties: string[]; }
Indicates which properties a client can resolve lazily on an inlay hint.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(dynamic_registration: nil, resolve_support: nil) ⇒ InlayHintClientCapabilities
Returns a new instance of InlayHintClientCapabilities.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb', line 8 def initialize(dynamic_registration: nil, resolve_support: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes[:resolveSupport] = resolve_support if resolve_support @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
34 35 36 |
# File 'lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb', line 34 def attributes @attributes end |
Instance Method Details
#dynamic_registration ⇒ boolean
Whether inlay hints support dynamic registration.
21 22 23 |
# File 'lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb', line 21 def dynamic_registration attributes.fetch(:dynamicRegistration) end |
#resolve_support ⇒ { properties: string[]; }
Indicates which properties a client can resolve lazily on an inlay hint.
30 31 32 |
# File 'lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb', line 30 def resolve_support attributes.fetch(:resolveSupport) end |
#to_hash ⇒ Object
36 37 38 |
# File 'lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb', line 36 def to_hash attributes end |
#to_json(*args) ⇒ Object
40 41 42 |
# File 'lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb', line 40 def to_json(*args) to_hash.to_json(*args) end |