summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex/RegexParser.cpp
AgeCommit message (Expand)Author
2021-11-13LibRegex: Correctly translate BRE pattern end anchorsTim Schumacher
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-10-01Libraries: Fix typosNico Weber
2021-09-21Libraries: Use AK::Variant default initialization where appropriateBen Wiederhake
2021-09-14LibRegex: Avoid using GenericLexer::consume() when at eofAli Mohammad Pur
2021-09-07LibRegex: Use the correct capture group index in ERE bytecode generationAli Mohammad Pur
2021-09-01LibRegex: Correctly handle failing in the middle of explicit repeatsAli Mohammad Pur
2021-08-31LibRegex: Limit the number of nested capture groups allowed in BREAli 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-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: 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: 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
2021-08-11LibRegex: Disallow invalid interval qualifiers in Unicode modeTimothy Flynn
2021-08-04LibRegex: Support property escapes of Unicode script extensionsTimothy Flynn
2021-08-04LibRegex: Support property escapes of the Unicode script propertyTimothy Flynn
2021-08-02LibRegex: Generate negated property escapes as a single instructionTimothy Flynn
2021-08-02LibRegex: Support property escapes of the form \p{Type=Value}Timothy Flynn
2021-08-02LibRegex: Support property escapes of Unicode General CategoriesTimothy Flynn
2021-07-30LibRegex+LibUnicode: Begin implementing Unicode property escapesTimothy Flynn
2021-07-24LibRegex: Make unclosed-at-eof brace quantifiers an errorAli Mohammad Pur
2021-07-23LibRegex: Support ECMA-262 Unicode escapes of the form "\u{code_point}"Timothy Flynn
2021-07-23LibRegex: Support UTF-16 RegexStringView and improve Unicode matchingTimothy Flynn
2021-07-23LibRegex: Switch to east-const styleAli Mohammad Pur
2021-07-23LibRegex: Clear previous capture group contents in ECMA262 modeAli Mohammad Pur
2021-07-13LibRegex: Consider EOF in the middle of a range an errorAli Mohammad Pur
2021-07-13LibRegex: Don't attempt to insert invalid bytecode in {B,E}REAli Mohammad Pur
2021-07-13LibRegex: Implement lookaround in EREAli Mohammad Pur
2021-07-13LibRegex: Allow empty character classes in {B,E}REAli Mohammad Pur
2021-07-13LibRegex: Disallow excessively large repetition counts in {B,E}REAli Mohammad Pur
2021-07-10LibRegex: Use the parser state capture group count in BREAli Mohammad Pur
2021-07-10LibRegex: Correctly parse BRE bracket expressionsAli Mohammad Pur
2021-07-10LibRegex: Add support for the Basic POSIX regular expressionsAli Mohammad Pur
2021-07-10LibRegex: Make the bytecode transformation functions staticAli Mohammad Pur
2021-07-06LibRegex: Allow dollar signs in ECMA262 named capture groupsTimothy Flynn
2021-06-12AK: Rename Vector::append(Vector) => Vector::extend(Vector)Andreas Kling
2021-06-06LibRegex: Fix compilation errors on my host machineLinus Groh
2021-06-02LibRegex: Hide stray dbgln() behind REGEX_DEBUGLinus Groh
2021-06-01Everywhere: codepoint => code pointAndreas Kling
2021-05-31LibRegex: Replace fprintf()/printf() with warnln()/outln()/dbgln()Linus Groh