Skip to content

Commit

Permalink
debug: use the body.value as the new value for the variable
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Jun 16, 2016
1 parent 6a1b806 commit 438266e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ export class DebugService implements debug.IDebugService {
name: variable.name,
value,
variablesReference: (<model.Variable>variable).parent.reference
}).then(() => variable.value = value);
}).then(response => variable.value = response.body.value);
}

public addWatchExpression(name: string): TPromise<void> {
Expand Down

0 comments on commit 438266e

Please sign in to comment.