Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
akpaevj committed Aug 5, 2024
1 parent 60ebc10 commit ba75813
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/OneScript.DebugServices/DefaultBreakpointManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ public string GetCondition(string module, int line)
=> _breakpoints.Find(x => x.Module.Equals(module) && x.LineNumber == line).Condition;

public void Clear()
=> _breakpoints.Clear();
{
_breakpoints.Clear();
_exceptionBreakpointsFilters.Clear();
}

public bool StopOnAnyException(string message)
=> NeedStopOnException("all", message);
Expand Down

0 comments on commit ba75813

Please sign in to comment.