summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex
AgeCommit message (Expand)Author
2021-11-18LibRegex: Avoid rewriting `a+` as `a*` as part of atomic rewritingAli Mohammad Pur
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
2021-11-13LibRegex: Correctly translate BRE pattern end anchorsTim Schumacher
2021-11-11Everywhere: Pass AK::StringView by valueAndreas 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-23AK: Prevent accidental misuse of BumpAllocatorBen Wiederhake
2021-10-09LibRegex: Transform 0,1 min/unbounded max repetitions to * or +Ali Mohammad Pur
2021-10-03LibRegex: Use a match table for character classesAli Mohammad Pur
2021-10-03LibRegex: Avoid creating a new temporary RegexStringView in Char compareAli Mohammad Pur
2021-10-02LibJS+AK: Use Vector<u16, 1> for UTF-16 string storageAndreas Kling
2021-10-02LibRegex: Don't emit signpost events for every regular expressionAndreas Kling
2021-10-01Libraries: Fix typosNico Weber
2021-09-29LibRegex: Flatten bytecode before performing optimizationsAndreas Kling
2021-09-21Libraries: Use AK::Variant default initialization where appropriateBen Wiederhake
2021-09-16LibRegex: Pass RegexStringView and Vector<RegexStringView> by referenceBrian Gianforcaro
2021-09-15LibRegex: Make the optimizer understand references and capture groupsAli Mohammad Pur
2021-09-14LibRegex: Avoid using GenericLexer::consume() when at eofAli Mohammad Pur
2021-09-14LibRegex: Avoid excessive Vector copy when compiling regexpsAli Mohammad Pur
2021-09-13LibRegex: Set a signpost on every executed regular expressionAli 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-07Everywhere: Behaviour => BehaviorAndreas Kling
2021-09-06LibRegex: Avoid keeping track of checkpoints across forksAli Mohammad Pur
2021-09-06LibRegex: Make infinite repetitions short-circuit on empty matchesAli Mohammad Pur
2021-09-04AK+LibRegex: Disable construction of views from temporary StringsIdan Horowitz
2021-09-01LibRegex: Correctly advance string positions in Compare::compare_stringAli Mohammad Pur
2021-09-01LibRegex: Correctly handle failing in the middle of explicit repeatsAli Mohammad Pur
2021-08-31LibRegex: Implement min/max repetition using the Repeat bytecodeAli Mohammad Pur
2021-08-31LibRegex: Limit the number of nested capture groups allowed in BREAli Mohammad Pur
2021-08-30LibRegex: Allow null bytes in patternAli Mohammad Pur
2021-08-20LibRegex: Treat pattern string characters as unsignedTimothy Flynn
2021-08-19LibRegex+LibJS: Change capture group names from a String to a FlyStringTimothy Flynn
2021-08-19LibRegex: Allow Unicode escape sequences in capture group namesTimothy Flynn
2021-08-19LibRegex: Use GenericLexer to consume escaped code pointsTimothy Flynn
2021-08-19LibRegex: Convert regex::Lexer to inherit from GenericLexerTimothy Flynn
2021-08-19AK: Move FormatParser definition from header to implementation fileTimothy 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: Remove (mostly) unused regex::MatchOutputTimothy Flynn
2021-08-15LibRegex+LibJS: Combine named and unnamed capture groups in MatchStateTimothy Flynn
2021-08-15LibRegex: Reduce RegexMatcher's BumpAllocator chunk sizeTimothy 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: 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-13AK+Everywhere: Delete Variant's default constructorAli Mohammad Pur