mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: WebIDL::OverloadResolution::resolve_overload, add dbgln FIXMEs
Relates to https://github.com/LadybirdBrowser/ladybird/issues/801
This commit is contained in:
parent
52ccd69e49
commit
cc7c49e235
Notes:
github-actions[bot]
2024-07-24 09:24:56 +00:00
Author: https://github.com/sideshowbarker
Commit: cc7c49e235
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/803
Reviewed-by: https://github.com/kennethmyhra ✅
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
Add a link
Reference in a new issue