Module Linol_lwt.WorkspaceSymbol
type t = {
containerName : string option;
data : Linol_lsp.Import.Json.t option;
kind : Linol_lsp__Types.SymbolKind.t;
location : Linol_lsp__Types.Location.t;
name : string;
tags : Linol_lsp__Types.SymbolTag.t list option;
}
val create :
?containerName:string ->
?data:Linol_lsp.Import.Json.t ->
kind:Linol_lsp__Types.SymbolKind.t ->
location:Linol_lsp__Types.Location.t ->
name:string ->
?tags:Linol_lsp__Types.SymbolTag.t list ->
unit ->
t