mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
LibWeb: Port PlatformObject from ByteString
This commit is contained in:
committed by
Andreas Kling
parent
adb327d5d3
commit
1536cd05a7
@@ -165,7 +165,7 @@ JS::ThrowCompletionOr<ResolvedOverload> resolve_overload(JS::VM& vm, IDL::Effect
|
||||
else if (value.is_object() && is<Bindings::PlatformObject>(value.as_object())
|
||||
&& has_overload_with_argument_type_or_subtype_matching(overloads, i, [value](IDL::Type const& type) {
|
||||
// - an interface type that V implements
|
||||
if (static_cast<Bindings::PlatformObject const&>(value.as_object()).implements_interface(type.name()))
|
||||
if (static_cast<Bindings::PlatformObject const&>(value.as_object()).implements_interface(MUST(String::from_byte_string(type.name()))))
|
||||
return true;
|
||||
|
||||
// - object
|
||||
|
||||
Reference in New Issue
Block a user