mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 16:49:06 +01:00
add SymbolInformation.tags, render deprecated items in quick outline and workspace symbol search
This commit is contained in:
@@ -70,8 +70,8 @@ class DocumentSymbolAdapter {
|
||||
const element = <modes.DocumentSymbol>{
|
||||
name: info.name || '!!MISSING: name!!',
|
||||
kind: typeConvert.SymbolKind.from(info.kind),
|
||||
tags: [],
|
||||
detail: undefined!, // Strict null override — avoid changing behavior
|
||||
tags: info.tags && info.tags.map(typeConvert.SymbolTag.from),
|
||||
detail: '',
|
||||
containerName: info.containerName,
|
||||
range: typeConvert.Range.from(info.location.range),
|
||||
selectionRange: typeConvert.Range.from(info.location.range),
|
||||
|
||||
Reference in New Issue
Block a user