summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex
AgeCommit message (Expand)Author
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
2021-04-29Build: Remove unused ${REGEX_SOURCES} from the tests CMakeLists.txtBrian Gianforcaro
2021-04-25Everywhere: Remove empty line after function body opening curly braceLinus Groh
2021-04-25AK+Userland: Move AK/TestSuite.h into LibTest and rework Tests' CMakeAndrew Kaster
2021-04-23LibRegex: Put to dbgln()s behind REGEX_DEBUGLinus Groh
2021-04-23LibRegex: Implement multiline stateful matchesAli Mohammad Pur
2021-04-23LibRegex: Do not attempt to find more matches when one match is neededAli Mohammad Pur
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-22LibRegex: Unbreak the ALL_DEBUG buildAndreas Kling
2021-04-21LibRegex: Convert String::format() => String::formatted()Andreas Kling
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: Take the regex as a const reference in print_bytecode()AnotherTest