We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0bb36b3 + c748051 commit 57ca55dCopy full SHA for 57ca55d
src/debug/debugSession.ts
@@ -548,8 +548,8 @@ export class ObjectScriptDebugSession extends LoggingDebugSession {
548
let variablesReference: number;
549
// if the property has children, generate a variable ID and save the property (including children) so VS Code can request them
550
if (result.hasChildren || result.type === "array" || result.type === "object") {
551
- // variablesReference = this._variableIdCounter++;
552
- // this._evalResultProperties.set(variablesReference, result);
+ variablesReference = this._variableIdCounter++;
+ this._evalResultProperties.set(variablesReference, result);
553
} else {
554
variablesReference = 0;
555
}
0 commit comments