debug: if one process verifies a breakpoint it is veriifed

fixes #28817
This commit is contained in:
isidor 2017-11-22 18:09:44 +01:00
parent db81c4ed5d
commit 9dbb1a1786
2 changed files with 2 additions and 1 deletions

View file

@ -888,7 +888,7 @@ export class Model implements IModel {
bp.endLineNumber = bpData.endLine;
bp.column = bpData.column;
bp.endColumn = bpData.endColumn;
bp.verified = bpData.verified;
bp.verified = bp.verified || bpData.verified;
bp.idFromAdapter = bpData.id;
bp.message = bpData.message;
bp.adapterData = bpData.source ? bpData.source.adapterData : bp.adapterData;

View file

@ -659,6 +659,7 @@ export class DebugService implements debug.IDebugService {
if (this.model.getProcesses().length === 0) {
this.removeReplExpressions();
this.allProcesses.clear();
this.model.getBreakpoints().forEach(bp => bp.verified = false);
}
this.launchJsonChanged = false;
const manager = this.getConfigurationManager();