summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex
AgeCommit message (Expand)Author
2022-12-09Everywhere: Use C++ concepts instead of requires clausesMoustafa Raafat
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-12-03Everywhere: Remove 'clang-format off' comments that are no longer neededLinus Groh
2022-12-03Everywhere: Run clang-formatLinus Groh
2022-11-17LibRegex: Use spans<4> to avoid allocating small vectorsAli Mohammad Pur
2022-11-17LibRegex: Use a copy-on-write vector for fork stateAli Mohammad Pur
2022-11-17LibRegex: Don't copy forked results twiceAli Mohammad Pur
2022-11-17LibRegex: Avoid copying MatchInput when getting argument descriptionsAli Mohammad Pur
2022-11-09LibRegex: Don't treat ForkReplace* as new forksAli Mohammad Pur
2022-11-06Everywhere: Remove redundant inequality comparison operatorsDaniel Bertalan
2022-11-01Everywhere: Mark dependencies of most targets as PRIVATETim Schumacher
2022-11-01Everywhere: Explicitly link all binaries against the LibC targetTim Schumacher
2022-10-16CMake+Userland: Use CMakeLists from Userland to build Lagom LibrariesAndrew Kaster
2022-10-14AK+Toolchain: Make char and wchar_t behave on AARCH64Gunnar Beutner
2022-10-10Everywhere: Replace uses of __serenity__ with AK_OS_SERENITYAndrew Kaster
2022-10-10LibRegex: Don't build LibRegex/C/Regex.cpp on LagomAndrew Kaster
2022-09-20LibC+LibRegex: Move central regex definitions into LibC/bitsAli Mohammad Pur
2022-09-17Everywhere: Fix badly-formatted includesBen Wiederhake
2022-09-16Everywhere: Remove a bunch of dead write-only variablesTim Schumacher
2022-09-12LibRegex: Account for eof after \<x> when 'x' leads to legacy behaviourAli Mohammad Pur
2022-09-12LibRegex: Consume exactly two chars for escaped charactersAli Mohammad Pur
2022-08-29LibRegex: Explicitly check if a character falls into a table-based rangeTimothy Flynn
2022-07-20LibRegex: Check code unit count range when accessing by code unit countAli Mohammad Pur
2022-07-20LibRegex: Partially implement the ECMAScript unicodeSets proposalAli Mohammad Pur
2022-07-20LibRegex: Refactor parsing 'CharacterEscape' out of 'AtomEscape'Ali Mohammad Pur
2022-07-20LibRegex: Pass parse flags as a struct instead of multiple argumentsAli Mohammad Pur
2022-07-12LibRegex: Remove RegexStringView(char const*) constructorsin-ack
2022-07-12Everywhere: Use default StringView constructor over nullptrsin-ack
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-07-12Everywhere: Explicitly specify the size in StringView constructorssin-ack
2022-07-10LibRegex: Treat inverted Compare entries as disjunctionsAli Mohammad Pur
2022-07-10LibRegex: Correctly track current inversion state in the optimizerAli Mohammad Pur
2022-07-10LibRegex: Flush compare tables before entering a permanent inverse stateAli Mohammad Pur
2022-07-09LibRegex: Fix lookup table-based range checks in CompareAli Mohammad Pur
2022-07-05LibRegex: Use the correct values for comparing LUT entriesAli Mohammad Pur
2022-07-05LibRegex: Use proper CharRange constructor instead of bit_castingAli Mohammad Pur
2022-07-04LibRegex: Fully interpret the Compare Op when looking for overlapsAli Mohammad Pur
2022-04-22LibRegex: Check inverse_matched after every op, not just at the endAli Mohammad Pur
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-02-20LibRegex: Make codegen+optimisation for alternatives much fasterAli Mohammad Pur
2022-02-20LibRegex: Make parse_disjunction() consume all disjunctions in one frameAli Mohammad Pur
2022-02-20LibRegex: Allow quantifiers after quantifiable assertionsAli Mohammad Pur
2022-02-14LibRegex: Correct the alternative matching order when one is emptyAli Mohammad Pur
2022-02-09LibRegex: Only skip full instructions when optimizing alternationsAli Mohammad Pur
2022-02-05LibRegex: Support non-ASCII whitespace characters when matching \s or \STimothy Flynn
2022-02-05LibRegex: Do not return an Optional from Regex::Matcher::executeTimothy Flynn
2022-02-05LibRegex: Do not continue searching input when the sticky bit is setTimothy Flynn
2022-02-05LibJS+LibRegex: Don't repeat regex match in regexp_exec()Ali Mohammad Pur
2022-02-05LibRegex+LibJS: Avoid searching for more than one match in JS RegExpsAli Mohammad Pur