mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
24 lines
508 B
C++
24 lines
508 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2022, David Tuin <davidot@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibJS/Runtime/Error.h>
|
||
|
#include <LibJS/Runtime/GlobalObject.h>
|
||
|
#include <LibJS/Runtime/SuppressedError.h>
|
||
|
|
||
|
namespace JS {
|
||
|
|
||
|
NonnullGCPtr<SuppressedError> SuppressedError::create(Realm& realm)
|
||
|
{
|
||
|
return *realm.heap().allocate<SuppressedError>(realm, *realm.intrinsics().suppressed_error_prototype());
|
||
|
}
|
||
|
|
||
|
SuppressedError::SuppressedError(Object& prototype)
|
||
|
: Error(prototype)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|