LibRegex: Account for uppercase characters in insensitive patterns

This commit is contained in:
Ali Mohammad Pur 2025-07-11 15:06:40 +02:00 committed by Jelle Raaijmakers
parent 31e8189f9f
commit 5b45223d5f
Notes: github-actions[bot] 2025-07-12 09:27:33 +00:00
6 changed files with 73 additions and 31 deletions

View file

@ -66,6 +66,7 @@ public:
Optional<ByteString> pure_substring_search;
// If populated, the pattern only accepts strings that start with a character in these ranges.
Vector<CharRange> starting_ranges;
Vector<CharRange> starting_ranges_insensitive;
bool only_start_of_line = false;
} optimization_data {};
};