diff --git a/src/vs/workbench/parts/debug/common/debugModel.ts b/src/vs/workbench/parts/debug/common/debugModel.ts index 0f3f88d6363ffdbeb9c0da5dbc163614030f6241..690441ce37d1bdfc1afc76a46a03cad7f7f31c16 100644 --- a/src/vs/workbench/parts/debug/common/debugModel.ts +++ b/src/vs/workbench/parts/debug/common/debugModel.ts @@ -212,7 +212,7 @@ export abstract class ExpressionContainer implements debug.IExpressionContainer const start = this.getChildrenInChunks ? this.startOfVariables : undefined; const count = this.getChildrenInChunks ? this.indexedVariables : undefined; return this.fetchVariables(start, count, 'indexed') - .then(variables => arrays.distinct(childrenArray.concat(variables), child => child.name)); + .then(variables => childrenArray.concat(variables)); }); } }