Class: LanguageServer::Protocol::Interface::WorkspaceSymbolClientCapabilities
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::WorkspaceSymbolClientCapabilities
- Defined in:
- lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#dynamic_registration ⇒ boolean
Symbol request supports dynamic registration.
-
#initialize(dynamic_registration: nil, symbol_kind: nil, tag_support: nil, resolve_support: nil) ⇒ WorkspaceSymbolClientCapabilities
constructor
A new instance of WorkspaceSymbolClientCapabilities.
-
#resolve_support ⇒ { properties: string[]; }
The client support partial workspace symbols.
-
#symbol_kind ⇒ { valueSet?: SymbolKind[]; }
Specific capabilities for the ‘SymbolKind` in the `workspace/symbol` request.
-
#tag_support ⇒ { valueSet: 1[]; }
The client supports tags on ‘SymbolInformation` and `WorkspaceSymbol`.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(dynamic_registration: nil, symbol_kind: nil, tag_support: nil, resolve_support: nil) ⇒ WorkspaceSymbolClientCapabilities
Returns a new instance of WorkspaceSymbolClientCapabilities.
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb', line 5 def initialize(dynamic_registration: nil, symbol_kind: nil, tag_support: nil, resolve_support: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes[:symbolKind] = symbol_kind if symbol_kind @attributes[:tagSupport] = tag_support if tag_support @attributes[:resolveSupport] = resolve_support if resolve_support @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
52 53 54 |
# File 'lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb', line 52 def attributes @attributes end |
Instance Method Details
#dynamic_registration ⇒ boolean
Symbol request supports dynamic registration.
20 21 22 |
# File 'lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb', line 20 def dynamic_registration attributes.fetch(:dynamicRegistration) end |
#resolve_support ⇒ { properties: string[]; }
The client support partial workspace symbols. The client will send the request ‘workspaceSymbol/resolve` to the server to resolve additional properties.
48 49 50 |
# File 'lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb', line 48 def resolve_support attributes.fetch(:resolveSupport) end |
#symbol_kind ⇒ { valueSet?: SymbolKind[]; }
Specific capabilities for the ‘SymbolKind` in the `workspace/symbol` request.
29 30 31 |
# File 'lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb', line 29 def symbol_kind attributes.fetch(:symbolKind) end |
#tag_support ⇒ { valueSet: 1[]; }
The client supports tags on ‘SymbolInformation` and `WorkspaceSymbol`. Clients supporting tags have to handle unknown tags gracefully.
38 39 40 |
# File 'lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb', line 38 def tag_support attributes.fetch(:tagSupport) end |
#to_hash ⇒ Object
54 55 56 |
# File 'lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb', line 54 def to_hash attributes end |
#to_json(*args) ⇒ Object
58 59 60 |
# File 'lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb', line 58 def to_json(*args) to_hash.to_json(*args) end |