12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- * Copyright (c) 2020, 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 BigIntObject* create(GlobalObject&, BigInt&);
- BigIntObject(BigInt&, Object& prototype);
- virtual ~BigIntObject();
- BigInt const& bigint() const { return m_bigint; }
- BigInt& bigint() { return m_bigint; }
- virtual Value value_of() const override
- {
- return Value(&m_bigint);
- }
- private:
- virtual void visit_edges(Visitor&) override;
- BigInt& m_bigint;
- };
- }
|