summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/BigIntObject.h
blob: df7140c14decadb1a89be5d17d7b96f1c294e51c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * 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;

    BigInt& m_bigint;
};

}