Class: LanguageServer::Protocol::Interface::MarkdownClientCapabilities
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::MarkdownClientCapabilities
- Defined in:
- lib/language_server/protocol/interface/markdown_client_capabilities.rb
Overview
Client capabilities specific to the used markdown parser.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(parser:, version: nil) ⇒ MarkdownClientCapabilities
constructor
A new instance of MarkdownClientCapabilities.
-
#parser ⇒ string
The name of the parser.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
-
#version ⇒ string
The version of the parser.
Constructor Details
#initialize(parser:, version: nil) ⇒ MarkdownClientCapabilities
Returns a new instance of MarkdownClientCapabilities.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/markdown_client_capabilities.rb', line 8 def initialize(parser:, version: nil) @attributes = {} @attributes[:parser] = parser @attributes[:version] = version if version @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
33 34 35 |
# File 'lib/language_server/protocol/interface/markdown_client_capabilities.rb', line 33 def attributes @attributes end |
Instance Method Details
#parser ⇒ string
The name of the parser.
21 22 23 |
# File 'lib/language_server/protocol/interface/markdown_client_capabilities.rb', line 21 def parser attributes.fetch(:parser) end |
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/markdown_client_capabilities.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/markdown_client_capabilities.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |
#version ⇒ string
The version of the parser.
29 30 31 |
# File 'lib/language_server/protocol/interface/markdown_client_capabilities.rb', line 29 def version attributes.fetch(:version) end |