This commit is contained in:
Peng Lyu 2019-09-04 10:37:18 -07:00
parent 22dcdaf5e5
commit 603e672661
3 changed files with 7 additions and 6 deletions

View file

@ -393,7 +393,8 @@ export class DocumentSymbolAdapter implements monaco.languages.DocumentSymbolPro
containerName: item.containerName,
kind: toSymbolKind(item.kind),
range: toRange(item.location.range),
selectionRange: toRange(item.location.range)
selectionRange: toRange(item.location.range),
tags: []
}));
});
}