/* * Copyright (c) 2020-2022, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include namespace JS { class BigInt final : public Cell { JS_CELL(BigInt, Cell); public: [[nodiscard]] static NonnullGCPtr create(VM&, Crypto::SignedBigInteger); virtual ~BigInt() override = default; Crypto::SignedBigInteger const& big_integer() const { return m_big_integer; } ErrorOr to_string() const; DeprecatedString to_deprecated_string() const { return DeprecatedString::formatted("{}n", m_big_integer.to_base_deprecated(10)); } private: explicit BigInt(Crypto::SignedBigInteger); Crypto::SignedBigInteger m_big_integer; }; ThrowCompletionOr number_to_bigint(VM&, Value); }