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.
1 parent 7fbd6f0 commit c748051Copy full SHA for c748051
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