提交 cd269800 编写于 作者: M Matt Bierner

Fixes #16984

上级 40243d1e
......@@ -78,7 +78,7 @@ export default class TypeScriptWorkspaceSymbolProvider implements WorkspaceSymbo
if (item.kind === 'method' || item.kind === 'function') {
label += '()';
}
result.push(new SymbolInformation(label, _kindMapping[item.kind], '' + item.containerName,
result.push(new SymbolInformation(label, _kindMapping[item.kind], item.containerName ? item.containerName : '',
new Location(this.client.asUrl(item.file), range)));
}
return result;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册