2020-06-06 00:14:10 +00:00
|
|
|
/*
|
2023-04-12 22:47:15 +00:00
|
|
|
* Copyright (c) 2020-2023, Linus Groh <linusg@serenityos.org>
|
2020-06-06 00:14:10 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-06 00:14:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibJS/Runtime/BigIntObject.h>
|
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2024-11-14 15:01:23 +00:00
|
|
|
GC_DEFINE_ALLOCATOR(BigIntObject);
|
2023-11-19 08:45:05 +00:00
|
|
|
|
2024-11-14 15:01:23 +00:00
|
|
|
GC::Ref<BigIntObject> BigIntObject::create(Realm& realm, BigInt& bigint)
|
2020-06-06 00:14:10 +00:00
|
|
|
{
|
2024-11-13 16:50:17 +00:00
|
|
|
return realm.create<BigIntObject>(bigint, realm.intrinsics().bigint_prototype());
|
2020-06-06 00:14:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BigIntObject::BigIntObject(BigInt& bigint, Object& prototype)
|
2022-12-14 11:17:58 +00:00
|
|
|
: Object(ConstructWithPrototypeTag::Tag, prototype)
|
2020-06-06 00:14:10 +00:00
|
|
|
, m_bigint(bigint)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-11-28 13:33:36 +00:00
|
|
|
void BigIntObject::visit_edges(Cell::Visitor& visitor)
|
2020-06-06 00:14:10 +00:00
|
|
|
{
|
2021-09-11 12:05:12 +00:00
|
|
|
Base::visit_edges(visitor);
|
2023-02-26 23:09:02 +00:00
|
|
|
visitor.visit(m_bigint);
|
2020-06-06 00:14:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|