From 6fcd2334a4a407b73e71cacb79700b309e5652ee Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 8 May 2018 16:54:21 +0200 Subject: [PATCH] fix compile issue --- src/vs/workbench/api/node/extHostTypeConverters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) );