mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:07:34 +00:00
LibWeb: Make URL, URLSearchParams & URLSearchParamsIterator GC-allocated
This commit is contained in:
parent
0dc2c27fa3
commit
fe9c5395d4
11 changed files with 125 additions and 86 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue