findDocumentSymbols does return an array of SymbolInformation, which is deprecated in favor of DocumentSymbol (and WorkspaceSymbol, but I don't think that's relevant here). It would be great if the implementation would change to using DocumentSymbol, or alternatively for more backwards compatibility introduce findDocumentSymbolsV2. This is blocking the Svelte language service from using DocumentSymbol because we rely on this service and it doesn't seem possible to transform one format into the other.
findDocumentSymbols
does return an array ofSymbolInformation
, which is deprecated in favor ofDocumentSymbol
(andWorkspaceSymbol
, but I don't think that's relevant here). It would be great if the implementation would change to usingDocumentSymbol
, or alternatively for more backwards compatibility introducefindDocumentSymbolsV2
. This is blocking the Svelte language service from usingDocumentSymbol
because we rely on this service and it doesn't seem possible to transform one format into the other.