struct LSP::WorkspaceSymbol
- LSP::WorkspaceSymbol
- Struct
- Value
- Object
Overview
A special workspace symbol that supports locations without a range
Included Modules
- JSON::Serializable
Defined in:
lsp/workspace_symbol.crConstructors
Instance Method Summary
- #container_name : String | Nil
- #container_name=(container_name : String | Nil)
-
#data : JSON::Any | Nil
A data entry field that is preserved on a workspace symbol between a workspace symbol request and a workspace symbol resolve request.
-
#data=(data : JSON::Any | Nil)
A data entry field that is preserved on a workspace symbol between a workspace symbol request and a workspace symbol resolve request.
- #kind : SymbolKind
- #kind=(kind : SymbolKind)
-
#location : Location | NamedTuple(uri: String)
The location of this symbol.
-
#location=(location : Location | NamedTuple(uri: String))
The location of this symbol.
-
#name : String
The name of this symbol.
-
#name=(name : String)
The name of this symbol.
-
#tags : Array(SymbolTag) | Nil
FIXME : How to serialize an array of enums? Tags for this completion item.
-
#tags=(tags : Array(SymbolTag) | Nil)
FIXME : How to serialize an array of enums? Tags for this completion item.
Constructor Detail
Instance Method Detail
A data entry field that is preserved on a workspace symbol between a workspace symbol request and a workspace symbol resolve request.
A data entry field that is preserved on a workspace symbol between a workspace symbol request and a workspace symbol resolve request.
The location of this symbol. Whether a server is allowed to
return a location without a range depends on the client
capability workspace.symbol.resolveSupport.
See also SymbolInformation.location.
The location of this symbol. Whether a server is allowed to
return a location without a range depends on the client
capability workspace.symbol.resolveSupport.
See also SymbolInformation.location.
FIXME : How to serialize an array of enums? Tags for this completion item.
FIXME : How to serialize an array of enums? Tags for this completion item.