2020-06-06 01:14:10 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Linus Groh <mail@linusgroh.de>
|
|
|
|
*
|
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();
|
|
|
|
|
|
|
|
const BigInt& bigint() const { return m_bigint; }
|
|
|
|
virtual Value value_of() const override
|
|
|
|
{
|
|
|
|
return Value(&m_bigint);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|