ladybird/Userland/Libraries/LibRegex
Ali Mohammad Pur d348eaf305 LibRegex: Treat inverted Compare entries as disjunctions
[^XYZ] is not(X | Y | Z), we used to translate this to
not(X) | not(Y) | not(Z), this commit makes LibRegex interpret this
pattern as not(X) & not(Y) & not(Z).
2022-07-10 14:26:03 +02:00
..
C
CMakeLists.txt
Forward.h
Regex.h
RegexByteCode.cpp LibRegex: Treat inverted Compare entries as disjunctions 2022-07-10 14:26:03 +02:00
RegexByteCode.h
RegexBytecodeStreamOptimizer.h
RegexDebug.h
RegexError.h
RegexLexer.cpp
RegexLexer.h
RegexMatch.h
RegexMatcher.cpp
RegexMatcher.h
RegexOptimizer.cpp LibRegex: Correctly track current inversion state in the optimizer 2022-07-10 14:26:03 +02:00
RegexOptions.h
RegexParser.cpp
RegexParser.h