123456789101112131415161718192021222324252627282930313233 |
- /*
- * 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;
- };
- }
|