1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

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
parent addfa1e82e
commit 54d89609de
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>;