microsoft/vscode

workbench.debug.viewlet.action.reapplyBreakpointsAction does not call setExceptionBreakPointsRequest on the debugger when only exception breakpoints are set.

indiejames opened this issue · 0 comments

  • VSCode Version: 1.6.1
  • OS Version: OX X 10.11.6

Steps to Reproduce:

  1. Set an exception breakpoint
  2. Call workbench.debug.viewlet.action.reapplyBreakpointsAction from extension code.

Expected:
setExceptionBreakPointsRequest called on debugger.
Actual:
setExceptionBreakPointsRequest is not called.

  1. Set a line breakpoint on a source file.
  2. Call workbench.debug.viewlet.action.reapplyBreakpointsAction from extension code.

setExceptionBreakPointsRequest is called as expected (along with setBreakPointsRequest for the line breakpoint).