2020-06-06 01:14:10 +01:00
|
|
|
/*
|
2021-04-22 22:51:19 +02:00
|
|
|
* Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
|
2020-06-06 01:14:10 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-06 01:14:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibJS/Runtime/BigInt.h>
|
|
|
|
#include <LibJS/Runtime/Object.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
class BigIntObject final : public Object {
|
2020-06-21 15:14:02 +02:00
|
|
|
JS_OBJECT(BigIntObject, Object);
|
|
|
|
|
2020-06-06 01:14:10 +01:00
|
|
|
public:
|
|
|
|
static BigIntObject* create(GlobalObject&, BigInt&);
|
|
|
|
|
|
|
|
BigIntObject(BigInt&, Object& prototype);
|
|
|
|
virtual ~BigIntObject();
|
|
|
|
|
2021-10-18 19:44:46 +01:00
|
|
|
BigInt const& bigint() const { return m_bigint; }
|
|
|
|
BigInt& bigint() { return m_bigint; }
|
|
|
|
|
2020-06-06 01:14:10 +01:00
|
|
|
private:
|
2020-11-28 14:33:36 +01:00
|
|
|
virtual void visit_edges(Visitor&) override;
|
2020-06-06 01:14:10 +01:00
|
|
|
|
|
|
|
BigInt& m_bigint;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|