| 
									
										
										
										
											2024-11-20 12:59:15 -05:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org> | 
					
						
							|  |  |  |  * Copyright (c) 2021-2023, Linus Groh <linusg@serenityos.org> | 
					
						
							|  |  |  |  * Copyright (c) 2024, Shannon Booth <shannon@serenityos.org> | 
					
						
							| 
									
										
										
										
											2025-08-05 10:28:13 -04:00
										 |  |  |  * Copyright (c) 2024-2025, Tim Flynn <trflynn89@ladybird.org> | 
					
						
							| 
									
										
										
										
											2024-11-20 12:59:15 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/Types.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/Completion.h>
 | 
					
						
							| 
									
										
										
										
											2024-11-22 09:23:09 -05:00
										 |  |  | #include <LibJS/Runtime/Object.h>
 | 
					
						
							| 
									
										
										
										
											2024-11-20 12:59:15 -05:00
										 |  |  | #include <LibJS/Runtime/Temporal/AbstractOperations.h>
 | 
					
						
							| 
									
										
										
										
											2024-11-22 16:39:21 -05:00
										 |  |  | #include <LibJS/Runtime/Temporal/ISORecords.h>
 | 
					
						
							| 
									
										
										
										
											2024-11-20 12:59:15 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace JS::Temporal { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-19 10:41:08 -07:00
										 |  |  | class PlainDate final : public Object { | 
					
						
							| 
									
										
										
										
											2024-11-22 09:23:09 -05:00
										 |  |  |     JS_OBJECT(PlainDate, Object); | 
					
						
							|  |  |  |     GC_DECLARE_ALLOCATOR(PlainDate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     virtual ~PlainDate() override = default; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[nodiscard]] ISODate iso_date() const { return m_iso_date; } | 
					
						
							|  |  |  |     [[nodiscard]] String const& calendar() const { return m_calendar; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     PlainDate(ISODate, String calendar, Object& prototype); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ISODate m_iso_date; // [[ISODate]]
 | 
					
						
							|  |  |  |     String m_calendar;  // [[Calendar]]
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-19 10:41:08 -07:00
										 |  |  | ISODate create_iso_date_record(double year, double month, double day); | 
					
						
							|  |  |  | ThrowCompletionOr<GC::Ref<PlainDate>> to_temporal_date(VM& vm, Value item, Value options = js_undefined()); | 
					
						
							|  |  |  | ThrowCompletionOr<GC::Ref<PlainDate>> create_temporal_date(VM&, ISODate, String calendar, GC::Ptr<FunctionObject> new_target = {}); | 
					
						
							| 
									
										
										
										
											2025-08-05 10:28:13 -04:00
										 |  |  | bool iso_date_surpasses(VM&, i8 sign, ISODate base_date, ISODate iso_date2, double years, double months, double weeks, double days); | 
					
						
							| 
									
										
										
										
											2025-07-19 10:41:08 -07:00
										 |  |  | ThrowCompletionOr<ISODate> regulate_iso_date(VM& vm, double year, double month, double day, Overflow overflow); | 
					
						
							|  |  |  | bool is_valid_iso_date(double year, double month, double day); | 
					
						
							|  |  |  | ISODate balance_iso_date(double year, double month, double day); | 
					
						
							|  |  |  | String pad_iso_year(i32 year); | 
					
						
							|  |  |  | String temporal_date_to_string(PlainDate const&, ShowCalendar); | 
					
						
							|  |  |  | bool iso_date_within_limits(ISODate); | 
					
						
							|  |  |  | i8 compare_iso_date(ISODate, ISODate); | 
					
						
							|  |  |  | ThrowCompletionOr<GC::Ref<Duration>> difference_temporal_plain_date(VM&, DurationOperation, PlainDate const&, Value other, Value options); | 
					
						
							|  |  |  | ThrowCompletionOr<GC::Ref<PlainDate>> add_duration_to_date(VM&, ArithmeticOperation, PlainDate const&, Value temporal_duration_like, Value options); | 
					
						
							| 
									
										
										
										
											2024-11-20 12:59:15 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | } |