Skip to content

Commit

Permalink
fix #50207
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed May 30, 2018
1 parent f1a0765 commit c562bd2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vs/workbench/api/node/extHostLanguageFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ class OutlineAdapter {
for (let i = 0; i < info.length; i++) {
let element = new Hierarchy(new SymbolInformation2(info[i].name, '', info[i].kind, info[i].location.range, info[i].location));
element.parent.containerName = info[i].containerName;
element.parent.location = info[i].location; // todo@joh make this proper

while (true) {
if (parentStack.length === 0) {
parentStack.push(element);
Expand Down

0 comments on commit c562bd2

Please sign in to comment.