ladybird/Userland/Libraries/LibJS/Runtime/BigIntObject.h

33 lines
628 B
C
Raw Normal View History

2020-06-06 01:14:10 +01:00
/*
* Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
2020-06-06 01:14:10 +01:00
*
* SPDX-License-Identifier: BSD-2-Clause
2020-06-06 01:14:10 +01:00
*/
#pragma once
#include <LibJS/Runtime/BigInt.h>
#include <LibJS/Runtime/Object.h>
namespace JS {
class BigIntObject final : public Object {
JS_OBJECT(BigIntObject, Object);
2020-06-06 01:14:10 +01:00
public:
static BigIntObject* create(Realm&, BigInt&);
2020-06-06 01:14:10 +01:00
BigIntObject(BigInt&, Object& prototype);
virtual ~BigIntObject() override = default;
2020-06-06 01:14:10 +01:00
BigInt const& bigint() const { return m_bigint; }
BigInt& bigint() { return m_bigint; }
2020-06-06 01:14:10 +01:00
private:
virtual void visit_edges(Visitor&) override;
2020-06-06 01:14:10 +01:00
BigInt& m_bigint;
};
}