1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

LibWeb: Make URL, URLSearchParams & URLSearchParamsIterator GC-allocated

This commit is contained in:
Andreas Kling 2022-09-04 14:04:42 +02:00
parent 0dc2c27fa3
commit fe9c5395d4
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;
}