LibRegex: Add support for the Basic POSIX regular expressions

This implements the internal regex stuff for #8506.
This commit is contained in:
Ali Mohammad Pur 2021-07-10 13:18:10 +04:30 committed by Andreas Kling
commit 54d89609de
Notes: sideshowbarker 2024-07-18 09:26:14 +09:00
3 changed files with 351 additions and 109 deletions

View file

@ -378,6 +378,9 @@ ALWAYS_INLINE Optional<bool> Matcher<Parser>::execute_low_prio_forks(const Match
return false;
}
template class Matcher<PosixBasicParser>;
template class Regex<PosixBasicParser>;
template class Matcher<PosixExtendedParser>;
template class Regex<PosixExtendedParser>;