summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex
AgeCommit message (Expand)Author
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
2022-01-26LibRegex: Implement ECMA262 multiline matching without splitting linesAli Mohammad Pur
2022-01-26LibRegex: Don't return empty vectors from RegexStringView::lines()Ali Mohammad Pur
2022-01-22LibRegex: Preserve capture groups and matches across ForkReplaceAli Mohammad Pur
2022-01-22LibRegex: Add some more information to Compare::Reference debug outputAli 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-14AK+Everywhere: Make Variant::visit() respect the Variant's constnessAli Mohammad Pur
2021-12-25LibRegex: Make FailForks fail all forks up to the last save pointAli Mohammad Pur
2021-12-21LibRegex: Remove duplicate declaration of execution_result_name(...)Hendiadyoin1
2021-12-21LibRegex: Use AK::any_of in Parser::lookahead_anyHendiadyoin1
2021-12-21LibRegex: Capture `this` explicitly in RegexStringView::equals lambdaHendiadyoin1
2021-12-21LibRegex: Remove some meaningless/useless const-qualifiersHendiadyoin1
2021-12-21LibRegex: Collapse some `if(...) return true; else return false;` blocksHendiadyoin1
2021-12-21LibRegex: Remove some else-after-returnsHendiadyoin1
2021-12-21LibRegex: Add some implied auto qualifiersHendiadyoin1
2021-12-21LibRegex: Make append_alternation() significantly fasterAli Mohammad Pur
2021-12-21LibRegex: Avoid calling DisjointChunks::size() in get_opcode()Ali 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