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
Low — this is an error path (only runs when a property-based test fails and a shrunk counterexample is being parsed). No measurable runtime gain in the common case. Filed for consistency with the rest of the codebase, which already uses static SearchValues<char> (e.g. MetadataFilterMatcher.cs:243, PathValidator.cs:10).
Summary
FsCheckPropertyTestExecutor.cs:195allocates achar[]on every call:The
['\r', '\n']collection expression allocates a fresh array each invocation. Hoist to a staticSearchValues<char>:Impact
Low — this is an error path (only runs when a property-based test fails and a shrunk counterexample is being parsed). No measurable runtime gain in the common case. Filed for consistency with the rest of the codebase, which already uses static
SearchValues<char>(e.g.MetadataFilterMatcher.cs:243,PathValidator.cs:10).Acceptance
SearchValues<char>field addedFound during a hot-path API-modernization sweep.