1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 18:17:44 +00:00

LibJS: Implement Temporal.Instant.prototype.toZonedDateTime()

This commit is contained in:
Linus Groh 2021-09-09 00:27:19 +01:00
parent 1c78ff1b9f
commit 6607d1dfb1
5 changed files with 116 additions and 0 deletions

View file

@ -22,6 +22,7 @@ public:
virtual ~Instant() override = default;
[[nodiscard]] BigInt const& nanoseconds() const { return m_nanoseconds; }
[[nodiscard]] BigInt& nanoseconds() { return m_nanoseconds; }
private:
virtual void visit_edges(Visitor&) override;