summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex
AgeCommit message (Expand)Author
2021-06-06LibRegex: Fix compilation errors on my host machineLinus Groh
2021-06-03Everywhere: Replace ctype.h to avoid narrowing conversionsMax Wipfli
2021-06-02LibRegex: Hide stray dbgln() behind REGEX_DEBUGLinus Groh
2021-06-01Everywhere: codepoint => code pointAndreas Kling
2021-05-31LibRegex: Replace fprintf()/printf() with warnln()/outln()/dbgln()Linus Groh
2021-05-21Revert "Userland: static vs non-static constexpr variables"Linus Groh
2021-05-21Userland: static vs non-static constexpr variablesLenny Maiorani
2021-05-07LibRegex: Convert StringBuilder::appendf() => AK::FormatAndreas Kling
2021-05-06Tests: Move LibRegex tests to Tests/LibRegexBrian Gianforcaro
2021-05-01Everywhere: Turn #if *_DEBUG into dbgln_if/if constexprGunnar Beutner
2021-04-29Build: Remove unused ${REGEX_SOURCES} from the tests CMakeLists.txtBrian Gianforcaro
2021-04-25Everywhere: Remove empty line after function body opening curly braceLinus Groh
2021-04-25AK+Userland: Move AK/TestSuite.h into LibTest and rework Tests' CMakeAndrew Kaster
2021-04-23LibRegex: Put to dbgln()s behind REGEX_DEBUGLinus Groh
2021-04-23LibRegex: Implement multiline stateful matchesAli Mohammad Pur
2021-04-23LibRegex: Do not attempt to find more matches when one match is neededAli Mohammad Pur
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-22LibRegex: Unbreak the ALL_DEBUG buildAndreas Kling
2021-04-21LibRegex: Convert String::format() => String::formatted()Andreas Kling
2021-04-12LibRegex: Generate a 'Compare' op for empty character classesAnotherTest
2021-04-10LibRegex: Remove 'ReadDigitFollowPolicy' as it's no longer neededAnotherTest
2021-04-10LibRegex: Treat brace quantifiers with invalid contents as literalsAnotherTest
2021-04-10LibRegex: Take the regex as a const reference in print_bytecode()AnotherTest
2021-04-10LibRegex: Allow a '?' suffix for brace quantifiersAnotherTest
2021-04-10LibRegex: Give ByteCode a copy ctor and and a move assignment operatorAnotherTest
2021-04-09LibRegex: Parse `\0` as a zero-byte instead of 0x30 ("0")Jelle Raaijmakers
2021-04-05LibRegex: Make sure there are as many group matches as actual matchesAnotherTest
2021-04-05LibRegex: Consider named capture groups as normal capture groups tooAnotherTest
2021-04-05LibRegex: Reset capture group indices when resetting parser stateAnotherTest
2021-04-04LibRegex: Allocate entries for all capture groups in RegexResultAnotherTest
2021-04-01LibRegex: Test alternatives in the expected orderAnotherTest
2021-04-01LibRegex: Allow references to capture groups that aren't parsed yetAnotherTest
2021-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
2021-02-28LibRegex: VERIFY that string builder in print_header is not null.Andrew Kaster
2021-02-28Meta: Build AK and LibRegex tests in Lagom and for SerenityAndrew Kaster
2021-02-27LibRegex: Allow missing high bound in {x,y} quantifiersAnotherTest
2021-02-27LibRegex: Match the escaped part of escaped syntax charactersAnotherTest
2021-02-27LibRegex: Implement section B.1.4. of the ECMA262 specAnotherTest
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-08Everywhere: Replace dbgln<flag>(...) with dbgln_if(flag, ...)AnotherTest
2021-01-25Everywhere: Debug macros instead of constexpr.asynts
2021-01-25Everywhere: Use CMake to generate AK/Debug.h.asynts
2021-01-22Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-22Everywhere: Fix typosLinus Groh
2021-01-16Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling