ladybird/Userland/Libraries/LibRegex
asynts 8465683dcf Everywhere: Debug macros instead of constexpr.
This was done with the following script:

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/dbgln<debug_([a-z_]+)>/dbgln<\U\1_DEBUG>/' {} \;

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/if constexpr \(debug_([a-z0-9_]+)/if constexpr \(\U\1_DEBUG/' {} \;
2021-01-25 09:47:36 +01:00
..
C Everywhere: Replace a bundle of dbg with dbgln. 2021-01-16 11:54:35 +01:00
Tests Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
CMakeLists.txt Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Forward.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Regex.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
RegexByteCode.cpp Everywhere: Debug macros instead of constexpr. 2021-01-25 09:47:36 +01:00
RegexByteCode.h Everywhere: Fix typos 2021-01-22 18:41:29 +01:00
RegexDebug.h Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
RegexError.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
RegexLexer.cpp Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
RegexLexer.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
RegexMatch.h Everywhere: Replace a bundle of dbg with dbgln. 2021-01-22 22:14:30 +01:00
RegexMatcher.cpp Everywhere: Debug macros instead of constexpr. 2021-01-25 09:47:36 +01:00
RegexMatcher.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
RegexOptions.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
RegexParser.cpp Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
RegexParser.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00