Allow setting exception breakpoints in debug config

This commit is contained in:
Ben Jackson 2019-11-05 18:33:41 +00:00
commit 5586d9e694
3 changed files with 44 additions and 6 deletions

View file

@ -739,6 +739,8 @@ class DebugSession( object ):
self._OnInitializeComplete()
self._codeView.ClearBreakpoints()
self._breakpoints.SetConfiguredBreakpoints(
self._configuration.get( 'breakpoints', {} ) )
self._breakpoints.SendBreakpoints( onBreakpointsDone )
def OnEvent_thread( self, message ):