LibWeb: Make DOMException GC-allocated

This commit is contained in:
Andreas Kling 2022-09-04 16:56:15 +02:00
commit 497ead37bc
Notes: sideshowbarker 2024-07-17 23:07:41 +09:00
58 changed files with 307 additions and 278 deletions

View file

@ -167,6 +167,8 @@ static bool impl_is_wrapper(Type const& type)
return true;
if (type.name == "URLSearchParams"sv)
return true;
if (type.name == "DOMException"sv)
return true;
return false;
}