mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
LibWeb: WebIDL::OverloadResolution::resolve_overload, add dbgln FIXMEs
Relates to https://github.com/LadybirdBrowser/ladybird/issues/801 (cherry picked from commit cc7c49e23567a7a8fa96bf59c4cdf2303c76ccdd)
This commit is contained in:
parent
ea3e9c1b3c
commit
6dc118fff9
1 changed files with 3 additions and 3 deletions
|
@ -271,9 +271,9 @@ JS::ThrowCompletionOr<ResolvedOverload> resolve_overload(JS::VM& vm, IDL::Effect
|
||||||
// then remove from S all other entries.
|
// then remove from S all other entries.
|
||||||
else if (value.is_object()
|
else if (value.is_object()
|
||||||
&& has_overload_with_argument_type_or_subtype_matching(overloads, i, [](IDL::Type const& type) {
|
&& has_overload_with_argument_type_or_subtype_matching(overloads, i, [](IDL::Type const& type) {
|
||||||
// FIXME: - a callback interface type
|
dbgln("FIXME: a callback interface type");
|
||||||
// FIXME: - a dictionary type
|
dbgln("FIXME: a dictionary type");
|
||||||
// FIXME: - a record type
|
dbgln("FIXME: a record type");
|
||||||
if (type.is_object())
|
if (type.is_object())
|
||||||
return true;
|
return true;
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue