Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
show empty property names as ""; fixes microsoft/vscode#24143
Browse files Browse the repository at this point in the history
  • Loading branch information
weinand committed Apr 6, 2017
1 parent e4d3040 commit f42a3d3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/node/nodeDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2663,6 +2663,10 @@ export class NodeDebugSession extends LoggingDebugSession {
return Promise.resolve(null);
}

if (!name) {
name = '""';
}

const simple = <V8Simple> val;

switch (val.type) {
Expand Down

0 comments on commit f42a3d3

Please sign in to comment.