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

33 lines
616 B
C
Raw Normal View History

2020-06-06 03:14:10 +03:00
/*
* Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
2020-06-06 03:14:10 +03:00
*
* SPDX-License-Identifier: BSD-2-Clause
2020-06-06 03:14:10 +03: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 03:14:10 +03:00
public:
static BigIntObject* create(GlobalObject&, BigInt&);
BigIntObject(BigInt&, Object& prototype);
virtual ~BigIntObject();
BigInt const& bigint() const { return m_bigint; }
BigInt& bigint() { return m_bigint; }
2020-06-06 03:14:10 +03:00
private:
virtual void visit_edges(Visitor&) override;
2020-06-06 03:14:10 +03:00
BigInt& m_bigint;
};
}