ladybird/Userland/Libraries/LibRegex
Ali Mohammad Pur c8b2199251 LibRegex: Clear previous capture group contents in ECMA262 mode
ECMA262 requires that the capture groups only contain the values from
the last iteration, e.g. `((c)(a)?(b))` should _not_ contain 'a' in the
second capture group when matching "cabcb".
2021-07-23 21:19:21 +04:30
..
C LibRegex+LibC: Make re_nsub available to the user 2021-07-13 07:04:06 +02:00
CMakeLists.txt Tests: Move LibRegex tests to Tests/LibRegex 2021-05-06 17:54:28 +02: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: Clear previous capture group contents in ECMA262 mode 2021-07-23 21:19:21 +04:30
RegexByteCode.h LibRegex: Clear previous capture group contents in ECMA262 mode 2021-07-23 21:19:21 +04:30
RegexDebug.h LibRegex: Also print a newline after each debug line 2021-07-18 21:10:55 +04:30
RegexError.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
RegexLexer.cpp Userland: Allow building SerenityOS with -funsigned-char 2021-06-13 18:52:58 +02:00
RegexLexer.h Userland: Allow building SerenityOS with -funsigned-char 2021-06-13 18:52:58 +02:00
RegexMatch.h LibRegex+Everywhere: Make LibRegex more unicode-aware 2021-07-18 21:10:55 +04:30
RegexMatcher.cpp LibRegex+Everywhere: Make LibRegex more unicode-aware 2021-07-18 21:10:55 +04:30
RegexMatcher.h LibRegex: Break from execution loop when the sticky flag is set 2021-07-09 19:45:55 +01:00
RegexOptions.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
RegexParser.cpp LibRegex: Clear previous capture group contents in ECMA262 mode 2021-07-23 21:19:21 +04:30
RegexParser.h LibRegex: Clear previous capture group contents in ECMA262 mode 2021-07-23 21:19:21 +04:30