LibWeb: Make URL, URLSearchParams & URLSearchParamsIterator GC-allocated

This commit is contained in:
Andreas Kling 2022-09-04 14:04:42 +02:00
commit fe9c5395d4
Notes: sideshowbarker 2024-07-17 07:24:53 +09:00
11 changed files with 125 additions and 86 deletions

View file

@ -163,6 +163,10 @@ static bool impl_is_wrapper(Type const& type)
return true;
if (type.name == "Blob"sv)
return true;
if (type.name == "URL"sv)
return true;
if (type.name == "URLSearchParams"sv)
return true;
return false;
}