Skip to content

Commit

Permalink
fixes #79895
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Aug 28, 2019
1 parent 44fa853 commit 7f94be7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/contrib/debug/browser/debugService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,8 @@ export class DebugService implements IDebugService {
return Promise.all(distinct(this.model.getBreakpoints(), bp => bp.uri.toString()).map(bp => this.sendBreakpoints(bp.uri, false, session)))
.then(() => this.sendFunctionBreakpoints(session))
// send exception breakpoints at the end since some debug adapters rely on the order
.then(() => this.sendExceptionBreakpoints(session));
.then(() => this.sendExceptionBreakpoints(session))
.then(() => this.sendDataBreakpoints(session));
}

private sendBreakpoints(modelUri: uri, sourceModified = false, session?: IDebugSession): Promise<void> {
Expand Down

0 comments on commit 7f94be7

Please sign in to comment.