one more time, fix #50321

This commit is contained in:
Johannes Rieken 2018-06-01 12:53:53 +02:00
parent 3976cb2318
commit 18104488f5

View file

@ -381,7 +381,8 @@ export namespace HierarchicalSymbolInformation {
detail: info.parent.detail,
location: location.from(info.parent.location),
definingRange: Range.from(info.parent.range),
kind: SymbolKind.from(info.parent.kind)
kind: SymbolKind.from(info.parent.kind),
containerName: info.parent.containerName
};
if (info.children) {
result.children = info.children.map(from);