ladybird/Libraries/LibJS/Runtime/BigIntObject.cpp

32 lines
681 B
C++
Raw Permalink Normal View History

2020-06-06 00:14:10 +00:00
/*
* Copyright (c) 2020-2023, Linus Groh <linusg@serenityos.org>
2020-06-06 00:14:10 +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 {
GC_DEFINE_ALLOCATOR(BigIntObject);
GC::Ref<BigIntObject> BigIntObject::create(Realm& realm, BigInt& bigint)
2020-06-06 00:14:10 +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)
: Object(ConstructWithPrototypeTag::Tag, prototype)
2020-06-06 00:14:10 +00:00
, m_bigint(bigint)
{
}
void BigIntObject::visit_edges(Cell::Visitor& visitor)
2020-06-06 00:14:10 +00:00
{
Base::visit_edges(visitor);
visitor.visit(m_bigint);
2020-06-06 00:14:10 +00:00
}
}