summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex/RegexByteCode.cpp
AgeCommit message (Expand)Author
2023-03-25LibRegex: Make ^ and $ accept all `LineTerminator`s instead of just '\n'Ali Mohammad Pur
2023-02-15LibRegex: Make '.' reject matching LF / LS / PS as per the ECMA262 specAli Mohammad Pur
2023-01-08AK+LibJS+LibRegex: Define an alias for UTF-16 string data storageTimothy Flynn
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-11-17LibRegex: Use spans<4> to avoid allocating small vectorsAli Mohammad Pur
2022-11-17LibRegex: Use a copy-on-write vector for fork stateAli Mohammad Pur
2022-11-17LibRegex: Avoid copying MatchInput when getting argument descriptionsAli Mohammad Pur
2022-11-09LibRegex: Don't treat ForkReplace* as new forksAli Mohammad Pur
2022-08-29LibRegex: Explicitly check if a character falls into a table-based rangeTimothy Flynn
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-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-10LibRegex: Treat inverted Compare entries as disjunctionsAli 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-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-02-05LibRegex: Support non-ASCII whitespace characters when matching \s or \STimothy Flynn
2022-01-26LibRegex: Implement ECMA262 multiline matching without splitting linesAli 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
2021-12-25LibRegex: Make FailForks fail all forks up to the last save pointAli Mohammad Pur
2021-12-21LibRegex: Remove some meaningless/useless const-qualifiersHendiadyoin1
2021-12-21LibRegex: Collapse some `if(...) return true; else return false;` blocksHendiadyoin1
2021-12-21LibRegex: Add some implied auto qualifiersHendiadyoin1
2021-12-21LibRegex: Avoid calling DisjointChunks::size() in get_opcode()Ali Mohammad Pur
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
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-09-13LibRegex: Add a basic optimization passAli Mohammad Pur
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-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-18LibRegex: Ensure the GoBack operation decrements the code unit indexTimothy 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-04LibRegex: Support property escapes of Unicode script extensionsTimothy Flynn
2021-08-04LibRegex: Support property escapes of the Unicode script propertyTimothy Flynn
2021-08-04LibRegex: Track string position in both code units and code pointsTimothy 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: Preserve the type of the match when clearing capture groupsAli Mohammad Pur