/* * Copyright (c) 2021-2023, Linus Groh * Copyright (c) 2021, Idan Horowitz * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include namespace JS::Temporal { class Instant final : public Object { JS_OBJECT(Instant, Object); public: virtual ~Instant() override = default; [[nodiscard]] BigInt const& nanoseconds() const { return m_nanoseconds; } private: Instant(BigInt const& nanoseconds, Object& prototype); virtual void visit_edges(Visitor&) override; // 8.4 Properties of Temporal.Instant Instances, https://tc39.es/proposal-temporal/#sec-properties-of-temporal-instant-instances NonnullGCPtr m_nanoseconds; // [[Nanoseconds]] }; // https://tc39.es/proposal-temporal/#eqn-nsMaxInstant // nsMaxInstant = 10^8 × nsPerDay = 8.64 × 10^21 static auto const ns_max_instant = "8640000000000000000000"_sbigint; // https://tc39.es/proposal-temporal/#eqn-nsMinInstant // nsMinInstant = -nsMaxInstant = -8.64 × 10^21 static auto const ns_min_instant = "-8640000000000000000000"_sbigint; bool is_valid_epoch_nanoseconds(BigInt const& epoch_nanoseconds); bool is_valid_epoch_nanoseconds(Crypto::SignedBigInteger const& epoch_nanoseconds); ThrowCompletionOr create_temporal_instant(VM&, BigInt const& nanoseconds, FunctionObject const* new_target = nullptr); ThrowCompletionOr to_temporal_instant(VM&, Value item); ThrowCompletionOr parse_temporal_instant(VM&, StringView iso_string); i32 compare_epoch_nanoseconds(BigInt const&, BigInt const&); ThrowCompletionOr add_instant(VM&, BigInt const& epoch_nanoseconds, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds); BigInt* difference_instant(VM&, BigInt const& nanoseconds1, BigInt const& nanoseconds2, u64 rounding_increment, StringView smallest_unit, StringView rounding_mode); BigInt* round_temporal_instant(VM&, BigInt const& nanoseconds, u64 increment, StringView unit, StringView rounding_mode); ThrowCompletionOr temporal_instant_to_string(VM&, Instant&, Value time_zone, Variant const& precision); ThrowCompletionOr difference_temporal_instant(VM&, DifferenceOperation, Instant const&, Value other, Value options); ThrowCompletionOr add_duration_to_or_subtract_duration_from_instant(VM&, ArithmeticOperation, Instant const&, Value temporal_duration_like); }