1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:08:10 +00:00
serenity/Userland/Libraries/LibRegex
Ali Mohammad Pur dd82c2e9b4 LibRegex: Correctly handle failing in the middle of explicit repeats
- Make sure that all the Repeat ops are reset (otherwise the operation
  would not be correct when going over the Repeat op a second time)
- Make sure that all matches that are allowed to fail are backed by a
  fork, otherwise the last failing fork would not have anywhere to
  return to.
Fixes #9707.
2021-09-01 13:36:53 +02:00
..
C LibRegex+LibC: Make re_nsub available to the user 2021-07-13 07:04:06 +02:00
CMakeLists.txt LibRegex+LibUnicode: Begin implementing Unicode property escapes 2021-07-30 21:26:31 +01:00
Forward.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
Regex.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
RegexByteCode.cpp LibRegex: Correctly handle failing in the middle of explicit repeats 2021-09-01 13:36:53 +02:00
RegexByteCode.h LibRegex: Correctly handle failing in the middle of explicit repeats 2021-09-01 13:36:53 +02:00
RegexDebug.h LibRegex: Switch to east-const style 2021-07-23 21:19:21 +04:30
RegexError.h LibRegex+LibUnicode: Begin implementing Unicode property escapes 2021-07-30 21:26:31 +01:00
RegexLexer.cpp LibRegex: Allow null bytes in pattern 2021-08-30 18:43:09 +02:00
RegexLexer.h LibRegex: Convert regex::Lexer to inherit from GenericLexer 2021-08-19 23:49:25 +02:00
RegexMatch.h LibRegex+LibJS: Change capture group names from a String to a FlyString 2021-08-19 23:49:25 +02:00
RegexMatcher.cpp LibRegex: Implement and use a REPEAT operation for bytecode repetition 2021-08-15 11:43:45 +01:00
RegexMatcher.h AK: Move FormatParser definition from header to implementation file 2021-08-19 23:49:25 +02:00
RegexOptions.h LibRegex: Allow RegexOptions to be declared at compile time 2021-07-30 21:26:31 +01:00
RegexParser.cpp LibRegex: Correctly handle failing in the middle of explicit repeats 2021-09-01 13:36:53 +02:00
RegexParser.h LibRegex: Limit the number of nested capture groups allowed in BRE 2021-08-31 16:37:49 +02:00