ladybird/Userland/Libraries/LibRegex
Timothy Flynn 4f2cbe119b LibRegex: Allow Unicode escape sequences in capture group names
Unfortunately, this requires a slight divergence in the way the capture
group names are stored. Previously, the generated byte code would simply
store a view into the regex pattern string, so no string copying was
required.

Now, the escape sequences are decoded into a new string, and a vector
of all parsed capture group names are stored in a vector in the parser
result structure. The byte code then stores a view into the
corresponding string in that vector.
2021-08-19 23:49:25 +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: Ensure the GoBack operation decrements the code unit index 2021-08-18 09:47:09 +04:30
RegexByteCode.h LibRegex: Implement and use a REPEAT operation for bytecode repetition 2021-08-15 11:43:45 +01: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: Convert regex::Lexer to inherit from GenericLexer 2021-08-19 23:49:25 +02:00
RegexLexer.h LibRegex: Convert regex::Lexer to inherit from GenericLexer 2021-08-19 23:49:25 +02:00
RegexMatch.h LibRegex: Ensure the GoBack operation decrements the code unit index 2021-08-18 09:47:09 +04:30
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: Allow Unicode escape sequences in capture group names 2021-08-19 23:49:25 +02:00
RegexParser.h LibRegex: Allow Unicode escape sequences in capture group names 2021-08-19 23:49:25 +02:00