Class: LanguageServer::Protocol::Interface::PublishDiagnosticsClientCapabilities
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::PublishDiagnosticsClientCapabilities
- Defined in:
- lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#code_description_support ⇒ boolean
Client supports a codeDescription property.
-
#data_support ⇒ boolean
Whether code action supports the ‘data` property which is preserved between a `textDocument/publishDiagnostics` and `textDocument/codeAction` request.
-
#initialize(related_information: nil, tag_support: nil, version_support: nil, code_description_support: nil, data_support: nil) ⇒ PublishDiagnosticsClientCapabilities
constructor
A new instance of PublishDiagnosticsClientCapabilities.
-
#related_information ⇒ boolean
Whether the clients accepts diagnostics with related information.
-
#tag_support ⇒ { valueSet: DiagnosticTag[]; }
Client supports the tag property to provide meta data about a diagnostic.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
-
#version_support ⇒ boolean
Whether the client interprets the version property of the ‘textDocument/publishDiagnostics` notification’s parameter.
Constructor Details
#initialize(related_information: nil, tag_support: nil, version_support: nil, code_description_support: nil, data_support: nil) ⇒ PublishDiagnosticsClientCapabilities
Returns a new instance of PublishDiagnosticsClientCapabilities.
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 5 def initialize(related_information: nil, tag_support: nil, version_support: nil, code_description_support: nil, data_support: nil) @attributes = {} @attributes[:relatedInformation] = if @attributes[:tagSupport] = tag_support if tag_support @attributes[:versionSupport] = version_support if version_support @attributes[:codeDescriptionSupport] = code_description_support if code_description_support @attributes[:dataSupport] = data_support if data_support @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
61 62 63 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 61 def attributes @attributes end |
Instance Method Details
#code_description_support ⇒ boolean
Client supports a codeDescription property
47 48 49 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 47 def code_description_support attributes.fetch(:codeDescriptionSupport) end |
#data_support ⇒ boolean
Whether code action supports the ‘data` property which is preserved between a `textDocument/publishDiagnostics` and `textDocument/codeAction` request.
57 58 59 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 57 def data_support attributes.fetch(:dataSupport) end |
#related_information ⇒ boolean
Whether the clients accepts diagnostics with related information.
21 22 23 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 21 def attributes.fetch(:relatedInformation) end |
#tag_support ⇒ { valueSet: DiagnosticTag[]; }
Client supports the tag property to provide meta data about a diagnostic. Clients supporting tags have to handle unknown tags gracefully.
30 31 32 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 30 def tag_support attributes.fetch(:tagSupport) end |
#to_hash ⇒ Object
63 64 65 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 63 def to_hash attributes end |
#to_json(*args) ⇒ Object
67 68 69 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 67 def to_json(*args) to_hash.to_json(*args) end |
#version_support ⇒ boolean
Whether the client interprets the version property of the ‘textDocument/publishDiagnostics` notification’s parameter.
39 40 41 |
# File 'lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb', line 39 def version_support attributes.fetch(:versionSupport) end |