summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex/RegexByteCode.h
AgeCommit message (Expand)Author
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: Remove some meaningless/useless const-qualifiersHendiadyoin1
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
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-09-14LibRegex: Avoid excessive Vector copy when compiling regexpsAli Mohammad Pur
2021-09-13LibRegex: Add a basic optimization passAli Mohammad Pur
2021-09-06LibRegex: Make infinite repetitions short-circuit on empty matchesAli 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-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-02LibRegex: Support property escapes of Unicode General CategoriesTimothy Flynn
2021-07-30LibRegex+LibUnicode: Begin implementing Unicode property escapesTimothy 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-22Everywhere: Prefer using {:#x} over 0x{:x}Gunnar Beutner
2021-07-18LibRegex+Everywhere: Make LibRegex more unicode-awareAli Mohammad Pur
2021-07-10LibRegex: Make the bytecode transformation functions staticAli Mohammad Pur
2021-06-24Userland: Replace VERIFY(is<T>) with verify_cast<T>Andreas Kling
2021-06-14LibRegex: Remove unused codeGunnar Beutner
2021-06-14LibRegex: Use a plain pointer for OpCode::m_stateGunnar Beutner
2021-06-14LibRegex: Avoid initialization checks in get_opcode_by_id()Gunnar 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-12AK: Rename Vector::append(Vector) => Vector::extend(Vector)Andreas Kling
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-10LibRegex: Allow a '?' suffix for brace quantifiersAnotherTest
2021-04-10LibRegex: Give ByteCode a copy ctor and and a move assignment operatorAnotherTest
2021-04-01LibRegex: Test alternatives in the expected orderAnotherTest
2021-04-01LibRegex: Allow references to capture groups that aren't parsed yetAnotherTest
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-01-22Everywhere: Fix typosLinus Groh
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling