ladybird/Userland/Libraries/LibJS/Runtime/BigIntObject.cpp

30 lines
621 B
C++
Raw Normal View History

2020-06-06 01:14:10 +01:00
/*
* Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
2020-06-06 01:14:10 +01:00
*
* SPDX-License-Identifier: BSD-2-Clause
2020-06-06 01:14:10 +01:00
*/
#include <LibJS/Runtime/BigIntObject.h>
#include <LibJS/Runtime/GlobalObject.h>
namespace JS {
BigIntObject* BigIntObject::create(Realm& realm, BigInt& bigint)
2020-06-06 01:14:10 +01:00
{
return realm.heap().allocate<BigIntObject>(realm, bigint, *realm.global_object().bigint_prototype());
2020-06-06 01:14:10 +01:00
}
BigIntObject::BigIntObject(BigInt& bigint, Object& prototype)
: Object(prototype)
2020-06-06 01:14:10 +01:00
, m_bigint(bigint)
{
}
void BigIntObject::visit_edges(Cell::Visitor& visitor)
2020-06-06 01:14:10 +01:00
{
Base::visit_edges(visitor);
2020-06-06 01:14:10 +01:00
visitor.visit(&m_bigint);
}
}