summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex
AgeCommit message (Expand)Author
2021-07-24LibRegex: Make unclosed-at-eof brace quantifiers an errorAli Mohammad Pur
2021-07-24LibRegex: Preserve the type of the match when clearing capture groupsAli Mohammad Pur
2021-07-23LibRegex: Support ECMA-262 Unicode escapes of the form "\u{code_point}"Timothy Flynn
2021-07-23AK+LibRegex: Partially implement case insensitive UTF-16 comparisonTimothy Flynn
2021-07-23LibRegex: Support UTF-16 RegexStringView and improve Unicode matchingTimothy Flynn
2021-07-23LibRegex: Switch to east-const styleAli Mohammad Pur
2021-07-23LibRegex: Clear previous capture group contents in ECMA262 modeAli Mohammad Pur
2021-07-22Everywhere: Prefer using {:#x} over 0x{:x}Gunnar Beutner
2021-07-18LibRegex+Everywhere: Make LibRegex more unicode-awareAli Mohammad Pur
2021-07-18LibRegex: Use <...> includes in RegexMatch.hAli Mohammad Pur
2021-07-18LibRegex: Also print a newline after each debug lineAli Mohammad Pur
2021-07-18LibRegex: Partially implement string compare for Utf32ViewAli Mohammad Pur
2021-07-18LibRegex: Implement line splitting for Utf32ViewAli Mohammad Pur
2021-07-13LibRegex: Consider EOF in the middle of a range an errorAli Mohammad Pur
2021-07-13LibRegex: Don't attempt to insert invalid bytecode in {B,E}REAli Mohammad Pur
2021-07-13LibRegex: Implement lookaround in EREAli Mohammad Pur
2021-07-13LibRegex: Allow empty character classes in {B,E}REAli Mohammad Pur
2021-07-13LibRegex: Disallow excessively large repetition counts in {B,E}REAli Mohammad Pur
2021-07-13LibRegex+LibC: Make re_nsub available to the userAli Mohammad Pur
2021-07-10LibRegex: Use the parser state capture group count in BREAli Mohammad Pur
2021-07-10LibRegex: Correctly parse BRE bracket expressionsAli Mohammad Pur
2021-07-10LibRegex: Add support for non-extended regular expressions in regcomp()Ali Mohammad Pur
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-09LibRegex: Break from execution loop when the sticky flag is setTimothy Flynn
2021-07-06LibRegex: Allow dollar signs in ECMA262 named capture groupsTimothy Flynn
2021-06-30LibRegex: Make regex::Regex move-constructible and move-assignableAndrew Kaster
2021-06-24Userland: Replace VERIFY(is<T>) with verify_cast<T>Andreas Kling
2021-06-16LibRegex: Display correct position for Compare in REGEX_DEBUGsin-ack
2021-06-16LibRegex: Fix incorrect case-sensitive comparisonssin-ack
2021-06-14LibRegex: Remove unused codeGunnar Beutner
2021-06-14LibRegex: Use a plain pointer for OpCode::m_stateGunnar Beutner
2021-06-14LibRegex: Avoid initialization checks in get_opcode_by_id()Gunnar Beutner
2021-06-14LibRegex: Avoid prepending items to vectorsGunnar Beutner
2021-06-14LibRegex: Avoid making unnecessary string copiesGunnar Beutner
2021-06-14LibRegex: Make get_opcode() return a referenceGunnar Beutner
2021-06-14LibRegex: Remove return value for settersGunnar Beutner
2021-06-14LibRegex: Use a plain array to store opcodesGunnar Beutner
2021-06-13Userland: Allow building SerenityOS with -funsigned-charGunnar Beutner
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-03Everywhere: Replace ctype.h to avoid narrowing conversionsMax Wipfli
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-21Revert "Userland: static vs non-static constexpr variables"Linus Groh
2021-05-21Userland: static vs non-static constexpr variablesLenny Maiorani
2021-05-07LibRegex: Convert StringBuilder::appendf() => AK::FormatAndreas Kling
2021-05-06Tests: Move LibRegex tests to Tests/LibRegexBrian Gianforcaro
2021-05-01Everywhere: Turn #if *_DEBUG into dbgln_if/if constexprGunnar Beutner