Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #556 from jtpio/source-breakpoints
Browse files Browse the repository at this point in the history
Fix handling of source breakpoints
  • Loading branch information
jtpio committed Oct 14, 2020
2 parents c8686e7 + d20c7b8 commit dc9e6f9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/service.ts
Expand Up @@ -573,7 +573,11 @@ export class DebuggerService implements IDebugger, IDisposable {
const { breakpoints, source } = val;
map.set(
source,
breakpoints.map(point => ({ ...point, verified: true }))
breakpoints.map(point => ({
...point,
source: { path: source },
verified: true
}))
);
return map;
},
Expand Down

0 comments on commit dc9e6f9

Please sign in to comment.