You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix: Add NotStartsWith to negative condition checks
The NotStartsWith filter was being treated as a positive condition, causing
incorrect filter logic. Stack filters with negative conditions need ALL
functions to not match (AND logic), while positive conditions need ANY
function to match (OR logic).
Fixed in 4 functions:
- handleUnsymbolizedFunctionCondition
- matchesFunctionNameInRange
- matchesSystemNameInRange
- matchesFilenameInRange
This fixes the failing TestStackFilterFunctionNameNotStartsWith test.
0 commit comments