mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 17:28:48 +00:00
23 lines
508 B
C++
23 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)
|
|
{
|
|
}
|
|
|
|
}
|