Class: LanguageServer::Protocol::Interface::ConfigurationItem
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::ConfigurationItem
- Defined in:
- lib/language_server/protocol/interface/configuration_item.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(scope_uri: nil, section: nil) ⇒ ConfigurationItem
constructor
A new instance of ConfigurationItem.
-
#scope_uri ⇒ string
The scope to get the configuration section for.
-
#section ⇒ string
The configuration section asked for.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(scope_uri: nil, section: nil) ⇒ ConfigurationItem
Returns a new instance of ConfigurationItem.
5 6 7 8 9 10 11 12 |
# File 'lib/language_server/protocol/interface/configuration_item.rb', line 5 def initialize(scope_uri: nil, section: nil) @attributes = {} @attributes[:scopeUri] = scope_uri if scope_uri @attributes[:section] = section if section @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
30 31 32 |
# File 'lib/language_server/protocol/interface/configuration_item.rb', line 30 def attributes @attributes end |
Instance Method Details
#scope_uri ⇒ string
The scope to get the configuration section for.
18 19 20 |
# File 'lib/language_server/protocol/interface/configuration_item.rb', line 18 def scope_uri attributes.fetch(:scopeUri) end |
#section ⇒ string
The configuration section asked for.
26 27 28 |
# File 'lib/language_server/protocol/interface/configuration_item.rb', line 26 def section attributes.fetch(:section) end |
#to_hash ⇒ Object
32 33 34 |
# File 'lib/language_server/protocol/interface/configuration_item.rb', line 32 def to_hash attributes end |
#to_json(*args) ⇒ Object
36 37 38 |
# File 'lib/language_server/protocol/interface/configuration_item.rb', line 36 def to_json(*args) to_hash.to_json(*args) end |