LibWeb: WebIDL::OverloadResolution::resolve_overload, add dbgln FIXMEs

Relates to https://github.com/LadybirdBrowser/ladybird/issues/801
This commit is contained in:
sideshowbarker 2024-07-24 16:21:23 +09:00 committed by Andreas Kling
parent 52ccd69e49
commit cc7c49e235
Notes: github-actions[bot] 2024-07-24 09:24:56 +00:00

View file

@ -271,9 +271,9 @@ JS::ThrowCompletionOr<ResolvedOverload> resolve_overload(JS::VM& vm, IDL::Effect
// then remove from S all other entries.
else if (value.is_object()
&& has_overload_with_argument_type_or_subtype_matching(overloads, i, [](IDL::Type const& type) {
// FIXME: - a callback interface type
// FIXME: - a dictionary type
// FIXME: - a record type
dbgln("FIXME: a callback interface type");
dbgln("FIXME: a dictionary type");
dbgln("FIXME: a record type");
if (type.is_object())
return true;
return false;