summaryrefslogtreecommitdiff
path: root/Tests/LibRegex
AgeCommit message (Expand)Author
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
2021-11-08LibRegex: Don't push LibRegex's "Error" into the global namespaceAndreas Kling
2021-10-29LibRegex: Don't ignore empty alternatives in append_alternation()Ali Mohammad Pur
2021-10-03LibRegex: Use a match table for character classesAli Mohammad Pur
2021-09-18AK: Make Utf8View constructors inline and remove C string constructorAndreas Kling
2021-09-15LibRegex: Make the optimizer understand references and capture groupsAli Mohammad Pur
2021-09-13LibRegex: Add a basic optimization passAli Mohammad Pur
2021-09-07LibRegex: Use the correct capture group index in ERE bytecode generationAli Mohammad Pur
2021-09-06Tests/LibRegex: Decrease the size of the fork chain testAli Mohammad Pur
2021-09-06LibRegex: Make infinite repetitions short-circuit on empty matchesAli Mohammad Pur
2021-09-02Tests: Remove all file(GLOB) from CMakeLists in TestsAndrew Kaster
2021-08-30LibRegex: Allow null bytes in patternAli Mohammad Pur
2021-08-20LibRegex: Treat pattern string characters as unsignedTimothy Flynn
2021-08-19LibRegex: Allow Unicode escape sequences in capture group namesTimothy Flynn
2021-08-18LibRegex: Ensure the GoBack operation decrements the code unit indexTimothy Flynn
2021-08-18LibRegex: In non-Unicode mode, parse \u{4} as a repetition patternTimothy Flynn
2021-08-15LibRegex: Implement and use a REPEAT operation for bytecode repetitionTimothy Flynn
2021-08-15LibRegex+LibJS: Combine named and unnamed capture groups in MatchStateTimothy Flynn
2021-08-15LibRegex: Disallow unescaped quantifiers in Unicode modeTimothy Flynn
2021-08-15LibRegex: Use correct source characters for Unicode identity escapesTimothy Flynn
2021-08-15LibRegex: Implement legacy octal escape parsing closer to the specTimothy Flynn
2021-08-15LibRegex: Convert LibRegex tests to use StringView in place of C-stringsTimothy Flynn
2021-08-15LibRegex: Ensure escaped hexadecimals are exactly 2 digits in lengthTimothy Flynn
2021-08-15LibRegex: Ensure escaped code points are exactly 4 digits in lengthTimothy Flynn
2021-08-15LibRegex: Fix ECMA-262 parsing of invalid identity escapesTimothy Flynn
2021-08-11LibRegex: Disallow invalid interval qualifiers in Unicode modeTimothy Flynn