Skip to content

Commit

Permalink
one more time, fix #50321
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jun 1, 2018
1 parent 3976cb2 commit 1810448
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/api/node/extHostTypeConverters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1810448

Please sign in to comment.