mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 06:18:59 +00:00
33 lines
660 B
C++
33 lines
660 B
C++
/*
|
|
* Copyright (c) 2020-2022, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Runtime/BigInt.h>
|
|
#include <LibJS/Runtime/Object.h>
|
|
|
|
namespace JS {
|
|
|
|
class BigIntObject final : public Object {
|
|
JS_OBJECT(BigIntObject, Object);
|
|
|
|
public:
|
|
static NonnullGCPtr<BigIntObject> create(Realm&, BigInt&);
|
|
|
|
virtual ~BigIntObject() override = default;
|
|
|
|
BigInt const& bigint() const { return m_bigint; }
|
|
BigInt& bigint() { return m_bigint; }
|
|
|
|
private:
|
|
BigIntObject(BigInt&, Object& prototype);
|
|
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
NonnullGCPtr<BigInt> m_bigint;
|
|
};
|
|
|
|
}
|