diff --git a/src/vs/workbench/api/node/extHostTypeConverters.ts b/src/vs/workbench/api/node/extHostTypeConverters.ts index a4617f8044c..b9e560e598c 100644 --- a/src/vs/workbench/api/node/extHostTypeConverters.ts +++ b/src/vs/workbench/api/node/extHostTypeConverters.ts @@ -380,8 +380,8 @@ export namespace HierarchicalSymbolInformation { export function to(info: modes.SymbolInformation): types.HierarchicalSymbolInformation { let result = new types.HierarchicalSymbolInformation( info.name, - SymbolKind.to(info.kind), info.detail, + SymbolKind.to(info.kind), location.to(info.location), Range.to(info.definingRange) );