summaryrefslogtreecommitdiff
path: root/Tests/LibRegex
AgeCommit message (Expand)Author
2023-02-15LibRegex: Bail out of atomic rewrite if a block doesn't contain comparesAli Mohammad Pur
2023-02-15LibRegex: Consider the inverse=true case when finding pattern overlapAli Mohammad Pur
2023-02-15LibRegex: Make '.' reject matching LF / LS / PS as per the ECMA262 specAli Mohammad Pur
2023-02-15Tests: Use .is_flag_set() instead of bitwise & in Regex flag testsAli Mohammad Pur
2023-01-27AK: Remove StringBuilder::build() in favor of to_deprecated_string()Linus Groh
2023-01-08AK+Everywhere: Make UTF-8 and UTF-32 to UTF-16 converters fallibleTimothy Flynn
2023-01-07Everywhere: Remove "LibC/" includes, add lint-rule against itBen Wiederhake
2023-01-06LibRegex: Prevent patterns from matching the empty string twiceEli Youngs
2023-01-02Everywhere: Move AK/Debug.h include to using files or removeBen Wiederhake
2023-01-02Everywhere: Fix badly-formatted includesBen Wiederhake
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-12-03Everywhere: Run clang-formatLinus Groh
2022-11-09LibRegex: Don't treat ForkReplace* as new forksAli Mohammad Pur
2022-10-10Tests: Remove LibRegex benchmark test file that has become staleAndrew Kaster
2022-09-12LibRegex: Account for eof after \<x> when 'x' leads to legacy behaviourAli Mohammad Pur
2022-09-05LibUnicode+Userland: Migrate generated CLDR data to LibLocaleDataTimothy Flynn
2022-08-29LibRegex: Explicitly check if a character falls into a table-based rangeTimothy Flynn
2022-07-20LibRegex: Partially implement the ECMAScript unicodeSets proposalAli Mohammad Pur
2022-07-12Everywhere: Replace single-char StringView op. arguments with charssin-ack
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-07-10LibRegex: Treat inverted Compare entries as disjunctionsAli Mohammad Pur
2022-07-09LibRegex: Fix lookup table-based range checks in CompareAli 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-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
2022-01-26LibRegex: Implement ECMA262 multiline matching without splitting linesAli Mohammad Pur
2022-01-22LibRegex: Allow ClearCaptureGroup to create new groupsAli Mohammad Pur
2022-01-22Revert "LibRegex: Implement an ECMA262 Regex quirk with negative loo..."Ali Mohammad Pur
2022-01-21LibRegex: Allow the pattern to match the zero-length end of the stringAli Mohammad Pur
2022-01-21LibRegex: Implement an ECMA262 Regex quirk with negative lookaroundsAli Mohammad Pur
2022-01-21LibRegex: Correct jump offset to the start of the loop blockAli Mohammad Pur
2022-01-07Everywhere: Fix many spelling errorsmjz19910
2022-01-04Tests: Link some tests directly against LibUnicodeDataTimothy Flynn
2021-12-25LibRegex: Make FailForks fail all forks up to the last save pointAli Mohammad Pur
2021-12-21LibRegex: Parse capture group names according to the ECMA262 specdavidot
2021-12-21LibRegex: Disallow duplicate named capture groups in ECMA262 parserdavidot
2021-12-15LibRegex: Merge alternations based on blocks and not instructionsAli Mohammad Pur
2021-11-18LibRegex: Avoid rewriting `a+` as `a*` as part of atomic rewritingAli Mohammad Pur
2021-11-13Tests/LibRegex: Add tests for line end anchors in PosixBasicTim Schumacher
2021-11-10AK+Everywhere: Stop including Vector.h from StringView.hAndreas Kling