Class: LanguageServer::Protocol::Interface::CodeLensOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::CodeLensOptions
- Defined in:
- lib/language_server/protocol/interface/code_lens_options.rb
Overview
Code Lens provider options of a [CodeLensRequest](#CodeLensRequest).
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(resolve_provider: nil, work_done_progress: nil) ⇒ CodeLensOptions
constructor
A new instance of CodeLensOptions.
-
#resolve_provider ⇒ boolean | nil
Code lens has a resolve provider as well.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
- #work_done_progress ⇒ boolean | nil
Constructor Details
#initialize(resolve_provider: nil, work_done_progress: nil) ⇒ CodeLensOptions
Returns a new instance of CodeLensOptions.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/code_lens_options.rb', line 8 def initialize(resolve_provider: nil, work_done_progress: nil) @attributes = {} @attributes[:resolveProvider] = resolve_provider if resolve_provider @attributes[:workDoneProgress] = work_done_progress if work_done_progress @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
30 31 32 |
# File 'lib/language_server/protocol/interface/code_lens_options.rb', line 30 def attributes @attributes end |
Instance Method Details
#resolve_provider ⇒ boolean | nil
Code lens has a resolve provider as well.
21 22 23 |
# File 'lib/language_server/protocol/interface/code_lens_options.rb', line 21 def resolve_provider attributes.fetch(:resolveProvider) end |
#to_hash ⇒ Object
32 33 34 |
# File 'lib/language_server/protocol/interface/code_lens_options.rb', line 32 def to_hash attributes end |
#to_json(*args) ⇒ Object
36 37 38 |
# File 'lib/language_server/protocol/interface/code_lens_options.rb', line 36 def to_json(*args) to_hash.to_json(*args) end |
#work_done_progress ⇒ boolean | nil
26 27 28 |
# File 'lib/language_server/protocol/interface/code_lens_options.rb', line 26 def work_done_progress attributes.fetch(:workDoneProgress) end |