Switch to SourceBreakpoint for the debugInfo response
@@ -567,7 +567,7 @@ export class DebuggerService implements IDebugger, IDisposable {
const { breakpoints, source } = val;
map.set(
source,
- breakpoints.map(point => ({ ...point, active: true }))
+ breakpoints.map(point => ({ ...point, verified: true, active: true }))
);
return map;
},
@@ -435,7 +435,7 @@ export namespace IDebugger {
*/
export interface IDebugInfoBreakpoints {
source: string;
- breakpoints: DebugProtocol.Breakpoint[];
+ breakpoints: DebugProtocol.SourceBreakpoint[];
}
/**