summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex/RegexByteCode.cpp
AgeCommit message (Expand)Author
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
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-18LibRegex+Everywhere: Make LibRegex more unicode-awareAli Mohammad Pur
2021-07-18LibRegex: Partially implement string compare for Utf32ViewAli Mohammad Pur
2021-06-16LibRegex: Display correct position for Compare in REGEX_DEBUGsin-ack
2021-06-16LibRegex: Fix incorrect case-sensitive comparisonssin-ack
2021-06-14LibRegex: Avoid initialization checks in get_opcode_by_id()Gunnar Beutner
2021-06-14LibRegex: Avoid making unnecessary string copiesGunnar Beutner
2021-06-14LibRegex: Make get_opcode() return a referenceGunnar Beutner
2021-06-14LibRegex: Remove return value for settersGunnar Beutner
2021-06-14LibRegex: Use a plain array to store opcodesGunnar Beutner
2021-06-03Everywhere: Replace ctype.h to avoid narrowing conversionsMax Wipfli
2021-05-31LibRegex: Replace fprintf()/printf() with warnln()/outln()/dbgln()Linus Groh
2021-04-25Everywhere: Remove empty line after function body opening curly braceLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-21LibRegex: Convert String::format() => String::formatted()Andreas Kling
2021-04-01LibRegex: Allow references to capture groups that aren't parsed yetAnotherTest
2021-02-27LibRegex: Implement section B.1.4. of the ECMA262 specAnotherTest
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-01-25Everywhere: Debug macros instead of constexpr.asynts
2021-01-22Everywhere: Replace a bundle of dbg with dbgln.asynts