2020-06-06 03:14:10 +03:00
|
|
|
/*
|
2021-04-22 23:51:19 +03:00
|
|
|
* Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
|
2020-06-06 03:14:10 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-06 03:14:10 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibJS/Runtime/BigInt.h>
|
|
|
|
#include <LibJS/Runtime/Object.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
class BigIntObject final : public Object {
|
2020-06-21 16:14:02 +03:00
|
|
|
JS_OBJECT(BigIntObject, Object);
|
|
|
|
|
2020-06-06 03:14:10 +03: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 16:33:36 +03:00
|
|
|
virtual void visit_edges(Visitor&) override;
|
2020-06-06 03:14:10 +03:00
|
|
|
|
|
|
|
BigInt& m_bigint;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|