ladybird/Userland/Libraries/LibXML
Lucas CHOLLET 79006c03b4 AK: Check the return type in IsCallableWithArguments
Template argument are checked to ensure that the `Out` type is equal or
convertible to the type returned by the invokee.

Compilation now fails on:
`Function<void()> f = []() -> int { return 0; };`

But this is allowed:
`Function<ErrorOr<int>()> f = []() -> int { return 0; };`
2023-02-04 18:47:02 -07:00
..
DOM AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
Parser AK: Check the return type in IsCallableWithArguments 2023-02-04 18:47:02 -07:00
CMakeLists.txt Everywhere: Explicitly link all binaries against the LibC target 2022-11-01 14:49:09 +00:00
Forward.h LibXML: Add a fairly basic XML parser 2022-03-28 23:11:48 +02:00
FundamentalTypes.h AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00