Skip to content

Commit

Permalink
debug: do not take into accoutn stack frame id when computing scope id
Browse files Browse the repository at this point in the history
fixes #74031
  • Loading branch information
isidorn committed Jun 3, 2019
1 parent 944643b commit 217d993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/common/debugModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ export class Scope extends ExpressionContainer implements IScope {
indexedVariables?: number,
public range?: IRange
) {
super(stackFrame.thread.session, reference, `scope:${stackFrame.getId()}:${name}:${index}`, namedVariables, indexedVariables);
super(stackFrame.thread.session, reference, `scope:${name}:${index}`, namedVariables, indexedVariables);
}

toString(): string {
Expand Down

0 comments on commit 217d993

Please sign in to comment.