mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:44:27 +00:00
Tweak LSP symbol kind for extensions
Change-Id: I60be9519670f860fc466588dbcf0f08fb3d3ef9c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/115245 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Danny Tuppeny <dantup@google.com>
This commit is contained in:
parent
54b95f1c8b
commit
6e64750d85
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ lsp.SymbolKind elementKindToSymbolKind(
|
|||
case server.ElementKind.ENUM_CONSTANT:
|
||||
return const [lsp.SymbolKind.Enum];
|
||||
case server.ElementKind.EXTENSION:
|
||||
return const [lsp.SymbolKind.Class];
|
||||
return const [lsp.SymbolKind.Namespace];
|
||||
case server.ElementKind.FIELD:
|
||||
return const [lsp.SymbolKind.Field];
|
||||
case server.ElementKind.FILE:
|
||||
|
|
Loading…
Reference in a new issue