summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex/RegexParser.cpp
AgeCommit message (Expand)Author
2021-04-12LibRegex: Generate a 'Compare' op for empty character classesAnotherTest
2021-04-10LibRegex: Remove 'ReadDigitFollowPolicy' as it's no longer neededAnotherTest
2021-04-10LibRegex: Treat brace quantifiers with invalid contents as literalsAnotherTest
2021-04-10LibRegex: Allow a '?' suffix for brace quantifiersAnotherTest
2021-04-09LibRegex: Parse `\0` as a zero-byte instead of 0x30 ("0")Jelle Raaijmakers
2021-04-05LibRegex: Consider named capture groups as normal capture groups tooAnotherTest
2021-04-05LibRegex: Reset capture group indices when resetting parser stateAnotherTest
2021-04-01LibRegex: Allow references to capture groups that aren't parsed yetAnotherTest
2021-02-27LibRegex: Allow missing high bound in {x,y} quantifiersAnotherTest
2021-02-27LibRegex: Match the escaped part of escaped syntax charactersAnotherTest
2021-02-27LibRegex: Implement section B.1.4. of the ECMA262 specAnotherTest
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-01-25Everywhere: Use CMake to generate AK/Debug.h.asynts
2021-01-16Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling