diff --git a/packages/debug/src/browser/debug-session.tsx b/packages/debug/src/browser/debug-session.tsx index c8825227121e2..be5d3a70472aa 100644 --- a/packages/debug/src/browser/debug-session.tsx +++ b/packages/debug/src/browser/debug-session.tsx @@ -573,7 +573,7 @@ export class DebugSession implements CompositeTreeElement { getInstructionBreakpoints(): DebugInstructionBreakpoint[] { if (this.capabilities.supportsInstructionBreakpoints) { - return this.getBreakpoints(BreakpointManager.FUNCTION_URI) + return this.getBreakpoints(BreakpointManager.INSTRUCTION_URI) .filter((breakpoint): breakpoint is DebugInstructionBreakpoint => breakpoint instanceof DebugInstructionBreakpoint); } return this.breakpoints.getInstructionBreakpoints().map(origin => new DebugInstructionBreakpoint(origin, this.asDebugBreakpointOptions()));