summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex/RegexParser.cpp
AgeCommit message (Expand)Author
2021-07-10LibRegex: Add support for the Basic POSIX regular expressionsAli Mohammad Pur
2021-07-10LibRegex: Make the bytecode transformation functions staticAli Mohammad Pur
2021-07-06LibRegex: Allow dollar signs in ECMA262 named capture groupsTimothy Flynn
2021-06-12AK: Rename Vector::append(Vector) => Vector::extend(Vector)Andreas Kling
2021-06-06LibRegex: Fix compilation errors on my host machineLinus Groh
2021-06-02LibRegex: Hide stray dbgln() behind REGEX_DEBUGLinus Groh
2021-06-01Everywhere: codepoint => code pointAndreas Kling
2021-05-31LibRegex: Replace fprintf()/printf() with warnln()/outln()/dbgln()Linus Groh
2021-05-01Everywhere: Turn #if *_DEBUG into dbgln_if/if constexprGunnar Beutner
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
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