mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +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: https://github.com/LadybirdBrowser/ladybird/commit/cc7c49e2356 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.
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue