index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Userland
/
Libraries
/
LibRegex
Age
Commit message (
Expand
)
Author
2022-02-20
LibRegex: Make codegen+optimisation for alternatives much faster
Ali Mohammad Pur
2022-02-20
LibRegex: Make parse_disjunction() consume all disjunctions in one frame
Ali Mohammad Pur
2022-02-20
LibRegex: Allow quantifiers after quantifiable assertions
Ali Mohammad Pur
2022-02-14
LibRegex: Correct the alternative matching order when one is empty
Ali Mohammad Pur
2022-02-09
LibRegex: Only skip full instructions when optimizing alternations
Ali Mohammad Pur
2022-02-05
LibRegex: Support non-ASCII whitespace characters when matching \s or \S
Timothy Flynn
2022-02-05
LibRegex: Do not return an Optional from Regex::Matcher::execute
Timothy Flynn
2022-02-05
LibRegex: Do not continue searching input when the sticky bit is set
Timothy Flynn
2022-02-05
LibJS+LibRegex: Don't repeat regex match in regexp_exec()
Ali Mohammad Pur
2022-02-05
LibRegex+LibJS: Avoid searching for more than one match in JS RegExps
Ali Mohammad Pur
2022-01-26
LibRegex: Implement ECMA262 multiline matching without splitting lines
Ali Mohammad Pur
2022-01-26
LibRegex: Don't return empty vectors from RegexStringView::lines()
Ali Mohammad Pur
2022-01-22
LibRegex: Preserve capture groups and matches across ForkReplace
Ali Mohammad Pur
2022-01-22
LibRegex: Add some more information to Compare::Reference debug output
Ali Mohammad Pur
2022-01-22
LibRegex: Allow ClearCaptureGroup to create new groups
Ali Mohammad Pur
2022-01-22
Revert "LibRegex: Implement an ECMA262 Regex quirk with negative loo..."
Ali Mohammad Pur
2022-01-21
LibRegex: Allow the pattern to match the zero-length end of the string
Ali Mohammad Pur
2022-01-21
LibRegex: Implement an ECMA262 Regex quirk with negative lookarounds
Ali Mohammad Pur
2022-01-21
LibRegex: Correct jump offset to the start of the loop block
Ali Mohammad Pur
2022-01-14
AK+Everywhere: Make Variant::visit() respect the Variant's constness
Ali Mohammad Pur
2021-12-25
LibRegex: Make FailForks fail all forks up to the last save point
Ali Mohammad Pur
2021-12-21
LibRegex: Remove duplicate declaration of execution_result_name(...)
Hendiadyoin1
2021-12-21
LibRegex: Use AK::any_of in Parser::lookahead_any
Hendiadyoin1
2021-12-21
LibRegex: Capture `this` explicitly in RegexStringView::equals lambda
Hendiadyoin1
2021-12-21
LibRegex: Remove some meaningless/useless const-qualifiers
Hendiadyoin1
2021-12-21
LibRegex: Collapse some `if(...) return true; else return false;` blocks
Hendiadyoin1
2021-12-21
LibRegex: Remove some else-after-returns
Hendiadyoin1
2021-12-21
LibRegex: Add some implied auto qualifiers
Hendiadyoin1
2021-12-21
LibRegex: Make append_alternation() significantly faster
Ali Mohammad Pur
2021-12-21
LibRegex: Avoid calling DisjointChunks::size() in get_opcode()
Ali Mohammad Pur
2021-12-21
LibRegex: Parse capture group names according to the ECMA262 spec
davidot
2021-12-21
LibRegex: Disallow duplicate named capture groups in ECMA262 parser
davidot
2021-12-15
LibRegex: Merge alternations based on blocks and not instructions
Ali Mohammad Pur
2021-11-18
LibRegex: Avoid rewriting `a+` as `a*` as part of atomic rewriting
Ali Mohammad Pur
2021-11-17
AK: Convert AK::Format formatting helpers to returning ErrorOr<void>
Andreas Kling
2021-11-13
LibRegex: Correctly translate BRE pattern end anchors
Tim Schumacher
2021-11-11
Everywhere: Pass AK::StringView by value
Andreas Kling
2021-11-08
LibRegex: Don't push LibRegex's "Error" into the global namespace
Andreas Kling
2021-10-29
LibRegex: Don't ignore empty alternatives in append_alternation()
Ali Mohammad Pur
2021-10-23
AK: Prevent accidental misuse of BumpAllocator
Ben Wiederhake
2021-10-09
LibRegex: Transform 0,1 min/unbounded max repetitions to * or +
Ali Mohammad Pur
2021-10-03
LibRegex: Use a match table for character classes
Ali Mohammad Pur
2021-10-03
LibRegex: Avoid creating a new temporary RegexStringView in Char compare
Ali Mohammad Pur
2021-10-02
LibJS+AK: Use Vector<u16, 1> for UTF-16 string storage
Andreas Kling
2021-10-02
LibRegex: Don't emit signpost events for every regular expression
Andreas Kling
2021-10-01
Libraries: Fix typos
Nico Weber
2021-09-29
LibRegex: Flatten bytecode before performing optimizations
Andreas Kling
2021-09-21
Libraries: Use AK::Variant default initialization where appropriate
Ben Wiederhake
2021-09-16
LibRegex: Pass RegexStringView and Vector<RegexStringView> by reference
Brian Gianforcaro
2021-09-15
LibRegex: Make the optimizer understand references and capture groups
Ali Mohammad Pur
[next]