Calendar.cpp 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007
  1. /*
  2. * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
  3. * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause
  6. */
  7. #include <LibJS/Runtime/AbstractOperations.h>
  8. #include <LibJS/Runtime/Array.h>
  9. #include <LibJS/Runtime/Completion.h>
  10. #include <LibJS/Runtime/GlobalObject.h>
  11. #include <LibJS/Runtime/Temporal/AbstractOperations.h>
  12. #include <LibJS/Runtime/Temporal/Calendar.h>
  13. #include <LibJS/Runtime/Temporal/CalendarConstructor.h>
  14. #include <LibJS/Runtime/Temporal/PlainDate.h>
  15. #include <LibJS/Runtime/Temporal/PlainDateTime.h>
  16. #include <LibJS/Runtime/Temporal/PlainMonthDay.h>
  17. #include <LibJS/Runtime/Temporal/PlainTime.h>
  18. #include <LibJS/Runtime/Temporal/PlainYearMonth.h>
  19. #include <LibJS/Runtime/Temporal/ZonedDateTime.h>
  20. #include <LibJS/Runtime/Value.h>
  21. namespace JS::Temporal {
  22. // 12 Temporal.Calendar Objects, https://tc39.es/proposal-temporal/#sec-temporal-calendar-objects
  23. Calendar::Calendar(String identifier, Object& prototype)
  24. : Object(prototype)
  25. , m_identifier(move(identifier))
  26. {
  27. }
  28. // 12.1.1 CreateTemporalCalendar ( identifier [ , newTarget ] ), https://tc39.es/proposal-temporal/#sec-temporal-createtemporalcalendar
  29. ThrowCompletionOr<Calendar*> create_temporal_calendar(GlobalObject& global_object, String const& identifier, FunctionObject const* new_target)
  30. {
  31. // 1. Assert: ! IsBuiltinCalendar(identifier) is true.
  32. VERIFY(is_builtin_calendar(identifier));
  33. // 2. If newTarget is not provided, set newTarget to %Temporal.Calendar%.
  34. if (!new_target)
  35. new_target = global_object.temporal_calendar_constructor();
  36. // 3. Let object be ? OrdinaryCreateFromConstructor(newTarget, "%Temporal.Calendar.prototype%", « [[InitializedTemporalCalendar]], [[Identifier]] »).
  37. // 4. Set object.[[Identifier]] to identifier.
  38. auto* object = TRY(ordinary_create_from_constructor<Calendar>(global_object, *new_target, &GlobalObject::temporal_calendar_prototype, identifier));
  39. // 5. Return object.
  40. return object;
  41. }
  42. // 12.1.2 IsBuiltinCalendar ( id ), https://tc39.es/proposal-temporal/#sec-temporal-isbuiltincalendar
  43. // NOTE: This is the minimum IsBuiltinCalendar implementation for engines without ECMA-402.
  44. bool is_builtin_calendar(String const& identifier)
  45. {
  46. // 1. If id is not "iso8601", return false.
  47. if (identifier != "iso8601"sv)
  48. return false;
  49. // 2. Return true.
  50. return true;
  51. }
  52. // 12.1.3 GetBuiltinCalendar ( id ), https://tc39.es/proposal-temporal/#sec-temporal-getbuiltincalendar
  53. ThrowCompletionOr<Calendar*> get_builtin_calendar(GlobalObject& global_object, String const& identifier)
  54. {
  55. auto& vm = global_object.vm();
  56. // 1. If ! IsBuiltinCalendar(id) is false, throw a RangeError exception.
  57. if (!is_builtin_calendar(identifier))
  58. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidCalendarIdentifier, identifier);
  59. // 2. Return ? Construct(%Temporal.Calendar%, « id »).
  60. MarkedValueList arguments(vm.heap());
  61. arguments.append(js_string(vm, identifier));
  62. auto calendar = vm.construct(*global_object.temporal_calendar_constructor(), *global_object.temporal_calendar_constructor(), move(arguments));
  63. if (auto* exception = vm.exception())
  64. return throw_completion(exception->value());
  65. return static_cast<Calendar*>(&calendar.as_object());
  66. }
  67. // 12.1.4 GetISO8601Calendar ( )
  68. Calendar* get_iso8601_calendar(GlobalObject& global_object)
  69. {
  70. // 1. Return ! GetBuiltinCalendar("iso8601").
  71. return MUST(get_builtin_calendar(global_object, "iso8601"));
  72. }
  73. // 12.1.5 CalendarFields ( calendar, fieldNames ), https://tc39.es/proposal-temporal/#sec-temporal-calendarfields
  74. ThrowCompletionOr<Vector<String>> calendar_fields(GlobalObject& global_object, Object& calendar, Vector<StringView> const& field_names)
  75. {
  76. auto& vm = global_object.vm();
  77. // 1. Let fields be ? GetMethod(calendar, "fields").
  78. auto fields = TRY(Value(&calendar).get_method(global_object, vm.names.fields));
  79. // 2. Let fieldsArray be ! CreateArrayFromList(fieldNames).
  80. auto field_names_values = MarkedValueList { vm.heap() };
  81. for (auto& field_name : field_names)
  82. field_names_values.append(js_string(vm, field_name));
  83. Value fields_array = Array::create_from(global_object, field_names_values);
  84. // 3. If fields is not undefined, then
  85. if (fields) {
  86. // a. Set fieldsArray to ? Call(fields, calendar, « fieldsArray »).
  87. fields_array = TRY(vm.call(*fields, &calendar, fields_array));
  88. }
  89. // 4. Return ? IterableToListOfType(fieldsArray, « String »).
  90. auto list = TRY(iterable_to_list_of_type(global_object, fields_array, { OptionType::String }));
  91. Vector<String> result;
  92. for (auto& value : list)
  93. result.append(value.as_string().string());
  94. return result;
  95. }
  96. // 12.1.9 CalendarYear ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendaryear
  97. ThrowCompletionOr<double> calendar_year(GlobalObject& global_object, Object& calendar, Object& date_like)
  98. {
  99. auto& vm = global_object.vm();
  100. // 1. Assert: Type(calendar) is Object.
  101. // 2. Let result be ? Invoke(calendar, "year", « dateLike »).
  102. auto result = TRY(Value(&calendar).invoke(global_object, vm.names.year, &date_like));
  103. // 3. If result is undefined, throw a RangeError exception.
  104. if (result.is_undefined())
  105. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidCalendarFunctionResult, vm.names.year.as_string(), vm.names.undefined.as_string());
  106. // 4. Return ? ToIntegerThrowOnInfinity(result).
  107. return TRY(to_integer_throw_on_infinity(global_object, result, ErrorType::TemporalInvalidCalendarFunctionResult, vm.names.year.as_string(), vm.names.Infinity.as_string()));
  108. }
  109. // 12.1.10 CalendarMonth ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarmonth
  110. ThrowCompletionOr<double> calendar_month(GlobalObject& global_object, Object& calendar, Object& date_like)
  111. {
  112. auto& vm = global_object.vm();
  113. // 1. Assert: Type(calendar) is Object.
  114. // 2. Let result be ? Invoke(calendar, "month", « dateLike »).
  115. auto result = TRY(Value(&calendar).invoke(global_object, vm.names.month, &date_like));
  116. // 3. If result is undefined, throw a RangeError exception.
  117. if (result.is_undefined())
  118. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidCalendarFunctionResult, vm.names.month.as_string(), vm.names.undefined.as_string());
  119. // 4. Return ? ToPositiveInteger(result).
  120. return TRY(to_positive_integer(global_object, result));
  121. }
  122. // 12.1.11 CalendarMonthCode ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarmonthcode
  123. ThrowCompletionOr<String> calendar_month_code(GlobalObject& global_object, Object& calendar, Object& date_like)
  124. {
  125. auto& vm = global_object.vm();
  126. // 1. Assert: Type(calendar) is Object.
  127. // 2. Let result be ? Invoke(calendar, "monthCode", « dateLike »).
  128. auto result = TRY(Value(&calendar).invoke(global_object, vm.names.monthCode, &date_like));
  129. // 3. If result is undefined, throw a RangeError exception.
  130. if (result.is_undefined())
  131. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidCalendarFunctionResult, vm.names.monthCode.as_string(), vm.names.undefined.as_string());
  132. // 4. Return ? ToString(result).
  133. return result.to_string(global_object);
  134. }
  135. // 12.1.12 CalendarDay ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarday
  136. ThrowCompletionOr<double> calendar_day(GlobalObject& global_object, Object& calendar, Object& date_like)
  137. {
  138. auto& vm = global_object.vm();
  139. // 1. Assert: Type(calendar) is Object.
  140. // 2. Let result be ? Invoke(calendar, "day", « dateLike »).
  141. auto result = TRY(Value(&calendar).invoke(global_object, vm.names.day, &date_like));
  142. // 3. If result is undefined, throw a RangeError exception.
  143. if (result.is_undefined())
  144. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidCalendarFunctionResult, vm.names.day.as_string(), vm.names.undefined.as_string());
  145. // 4. Return ? ToPositiveInteger(result).
  146. return TRY(to_positive_integer(global_object, result));
  147. }
  148. // 12.1.13 CalendarDayOfWeek ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendardayofweek
  149. ThrowCompletionOr<Value> calendar_day_of_week(GlobalObject& global_object, Object& calendar, Object& date_like)
  150. {
  151. auto& vm = global_object.vm();
  152. // 1. Assert: Type(calendar) is Object.
  153. // 2. Return ? Invoke(calendar, "dayOfWeek", « dateLike »).
  154. return TRY(Value(&calendar).invoke(global_object, vm.names.dayOfWeek, &date_like));
  155. }
  156. // 12.1.14 CalendarDayOfYear ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendardayofyear
  157. ThrowCompletionOr<Value> calendar_day_of_year(GlobalObject& global_object, Object& calendar, Object& date_like)
  158. {
  159. auto& vm = global_object.vm();
  160. // 1. Assert: Type(calendar) is Object.
  161. // 2. Return ? Invoke(calendar, "dayOfYear", « dateLike »).
  162. return TRY(Value(&calendar).invoke(global_object, vm.names.dayOfYear, &date_like));
  163. }
  164. // 12.1.15 CalendarWeekOfYear ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarweekofyear
  165. ThrowCompletionOr<Value> calendar_week_of_year(GlobalObject& global_object, Object& calendar, Object& date_like)
  166. {
  167. auto& vm = global_object.vm();
  168. // 1. Assert: Type(calendar) is Object.
  169. // 2. Return ? Invoke(calendar, "weekOfYear", « dateLike »).
  170. return TRY(Value(&calendar).invoke(global_object, vm.names.weekOfYear, &date_like));
  171. }
  172. // 12.1.16 CalendarDaysInWeek ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendardaysinweek
  173. ThrowCompletionOr<Value> calendar_days_in_week(GlobalObject& global_object, Object& calendar, Object& date_like)
  174. {
  175. auto& vm = global_object.vm();
  176. // 1. Assert: Type(calendar) is Object.
  177. // 2. Return ? Invoke(calendar, "daysInWeek", « dateLike »).
  178. return TRY(Value(&calendar).invoke(global_object, vm.names.daysInWeek, &date_like));
  179. }
  180. // 12.1.17 CalendarDaysInMonth ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendardaysinmonth
  181. ThrowCompletionOr<Value> calendar_days_in_month(GlobalObject& global_object, Object& calendar, Object& date_like)
  182. {
  183. auto& vm = global_object.vm();
  184. // 1. Assert: Type(calendar) is Object.
  185. // 2. Return ? Invoke(calendar, "daysInMonth", « dateLike »).
  186. return TRY(Value(&calendar).invoke(global_object, vm.names.daysInMonth, &date_like));
  187. }
  188. // 12.1.18 CalendarDaysInYear ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendardaysinyear
  189. ThrowCompletionOr<Value> calendar_days_in_year(GlobalObject& global_object, Object& calendar, Object& date_like)
  190. {
  191. auto& vm = global_object.vm();
  192. // 1. Assert: Type(calendar) is Object.
  193. // 2. Return ? Invoke(calendar, "daysInYear", « dateLike »).
  194. return TRY(Value(&calendar).invoke(global_object, vm.names.daysInYear, &date_like));
  195. }
  196. // 12.1.19 CalendarMonthsInYear ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarmonthsinyear
  197. ThrowCompletionOr<Value> calendar_months_in_year(GlobalObject& global_object, Object& calendar, Object& date_like)
  198. {
  199. auto& vm = global_object.vm();
  200. // 1. Assert: Type(calendar) is Object.
  201. // 2. Return ? Invoke(calendar, "monthsInYear", « dateLike »).
  202. return TRY(Value(&calendar).invoke(global_object, vm.names.monthsInYear, &date_like));
  203. }
  204. // 12.1.20 CalendarInLeapYear ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarinleapyear
  205. ThrowCompletionOr<Value> calendar_in_leap_year(GlobalObject& global_object, Object& calendar, Object& date_like)
  206. {
  207. auto& vm = global_object.vm();
  208. // 1. Assert: Type(calendar) is Object.
  209. // 2. Return ? Invoke(calendar, "inLeapYear", « dateLike »).
  210. return TRY(Value(&calendar).invoke(global_object, vm.names.inLeapYear, &date_like));
  211. }
  212. // 15.6.1.2 CalendarEra ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarera
  213. ThrowCompletionOr<Value> calendar_era(GlobalObject& global_object, Object& calendar, Object& date_like)
  214. {
  215. auto& vm = global_object.vm();
  216. // 1. Assert: Type(calendar) is Object.
  217. // 2. Let result be ? Invoke(calendar, "era", « dateLike »).
  218. auto result = TRY(Value(&calendar).invoke(global_object, vm.names.era, &date_like));
  219. // 3. If result is not undefined, set result to ? ToString(result).
  220. if (!result.is_undefined()) {
  221. auto result_string = result.to_string(global_object);
  222. if (auto* exception = vm.exception())
  223. return throw_completion(exception->value());
  224. result = js_string(vm, move(result_string));
  225. }
  226. // 4. Return result.
  227. return result;
  228. }
  229. // 15.6.1.3 CalendarEraYear ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarerayear
  230. ThrowCompletionOr<Value> calendar_era_year(GlobalObject& global_object, Object& calendar, Object& date_like)
  231. {
  232. auto& vm = global_object.vm();
  233. // 1. Assert: Type(calendar) is Object.
  234. // 2. Let result be ? Invoke(calendar, "eraYear", « dateLike »).
  235. auto result = TRY(Value(&calendar).invoke(global_object, vm.names.eraYear, &date_like));
  236. // 3. If result is not undefined, set result to ? ToIntegerThrowOnInfinity(result).
  237. if (!result.is_undefined())
  238. result = Value(TRY(to_integer_throw_on_infinity(global_object, result, ErrorType::TemporalInvalidCalendarFunctionResult, vm.names.eraYear.as_string(), "Infinity"sv)));
  239. // 4. Return result.
  240. return result;
  241. }
  242. // 12.1.21 ToTemporalCalendar ( temporalCalendarLike ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendar
  243. ThrowCompletionOr<Object*> to_temporal_calendar(GlobalObject& global_object, Value temporal_calendar_like)
  244. {
  245. auto& vm = global_object.vm();
  246. // 1. If Type(temporalCalendarLike) is Object, then
  247. if (temporal_calendar_like.is_object()) {
  248. auto& temporal_calendar_like_object = temporal_calendar_like.as_object();
  249. // a. If temporalCalendarLike has an [[InitializedTemporalDate]], [[InitializedTemporalDateTime]], [[InitializedTemporalMonthDay]], [[InitializedTemporalTime]], [[InitializedTemporalYearMonth]], or [[InitializedTemporalZonedDateTime]] internal slot, then
  250. // i. Return temporalCalendarLike.[[Calendar]].
  251. if (is<PlainDate>(temporal_calendar_like_object))
  252. return &static_cast<PlainDate&>(temporal_calendar_like_object).calendar();
  253. if (is<PlainDateTime>(temporal_calendar_like_object))
  254. return &static_cast<PlainDateTime&>(temporal_calendar_like_object).calendar();
  255. if (is<PlainMonthDay>(temporal_calendar_like_object))
  256. return &static_cast<PlainMonthDay&>(temporal_calendar_like_object).calendar();
  257. if (is<PlainTime>(temporal_calendar_like_object))
  258. return &static_cast<PlainTime&>(temporal_calendar_like_object).calendar();
  259. if (is<PlainYearMonth>(temporal_calendar_like_object))
  260. return &static_cast<PlainYearMonth&>(temporal_calendar_like_object).calendar();
  261. if (is<ZonedDateTime>(temporal_calendar_like_object))
  262. return &static_cast<ZonedDateTime&>(temporal_calendar_like_object).calendar();
  263. // b. If ? HasProperty(temporalCalendarLike, "calendar") is false, return temporalCalendarLike.
  264. if (!TRY(temporal_calendar_like_object.has_property(vm.names.calendar)))
  265. return &temporal_calendar_like_object;
  266. // c. Set temporalCalendarLike to ? Get(temporalCalendarLike, "calendar").
  267. temporal_calendar_like = TRY(temporal_calendar_like_object.get(vm.names.calendar));
  268. // d. If Type(temporalCalendarLike) is Object and ? HasProperty(temporalCalendarLike, "calendar") is false, return temporalCalendarLike.
  269. if (temporal_calendar_like.is_object() && !TRY(temporal_calendar_like.as_object().has_property(vm.names.calendar)))
  270. return &temporal_calendar_like.as_object();
  271. }
  272. // 2. Let identifier be ? ToString(temporalCalendarLike).
  273. auto identifier = temporal_calendar_like.to_string(global_object);
  274. if (auto* exception = vm.exception())
  275. return throw_completion(exception->value());
  276. // 3. If ! IsBuiltinCalendar(identifier) is false, then
  277. if (!is_builtin_calendar(identifier)) {
  278. // a. Let identifier be ? ParseTemporalCalendarString(identifier).
  279. identifier = TRY(parse_temporal_calendar_string(global_object, identifier));
  280. }
  281. // 4. Return ! CreateTemporalCalendar(identifier).
  282. return MUST(create_temporal_calendar(global_object, identifier));
  283. }
  284. // 12.1.22 ToTemporalCalendarWithISODefault ( temporalCalendarLike ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendarwithisodefault
  285. ThrowCompletionOr<Object*> to_temporal_calendar_with_iso_default(GlobalObject& global_object, Value temporal_calendar_like)
  286. {
  287. // 1. If temporalCalendarLike is undefined, then
  288. if (temporal_calendar_like.is_undefined()) {
  289. // a. Return ! GetISO8601Calendar().
  290. return get_iso8601_calendar(global_object);
  291. }
  292. // 2. Return ? ToTemporalCalendar(temporalCalendarLike).
  293. return to_temporal_calendar(global_object, temporal_calendar_like);
  294. }
  295. // 12.1.23 GetTemporalCalendarWithISODefault ( item ), https://tc39.es/proposal-temporal/#sec-temporal-gettemporalcalendarwithisodefault
  296. ThrowCompletionOr<Object*> get_temporal_calendar_with_iso_default(GlobalObject& global_object, Object& item)
  297. {
  298. auto& vm = global_object.vm();
  299. // 1. If item has an [[InitializedTemporalDate]], [[InitializedTemporalDateTime]], [[InitializedTemporalMonthDay]], [[InitializedTemporalTime]], [[InitializedTemporalYearMonth]], or [[InitializedTemporalZonedDateTime]] internal slot, then
  300. // a. Return item.[[Calendar]].
  301. if (is<PlainDate>(item))
  302. return &static_cast<PlainDate&>(item).calendar();
  303. if (is<PlainDateTime>(item))
  304. return &static_cast<PlainDateTime&>(item).calendar();
  305. if (is<PlainMonthDay>(item))
  306. return &static_cast<PlainMonthDay&>(item).calendar();
  307. if (is<PlainTime>(item))
  308. return &static_cast<PlainTime&>(item).calendar();
  309. if (is<PlainYearMonth>(item))
  310. return &static_cast<PlainYearMonth&>(item).calendar();
  311. if (is<ZonedDateTime>(item))
  312. return &static_cast<ZonedDateTime&>(item).calendar();
  313. // 2. Let calendar be ? Get(item, "calendar").
  314. auto calendar = TRY(item.get(vm.names.calendar));
  315. // 3. Return ? ToTemporalCalendarWithISODefault(calendar).
  316. return to_temporal_calendar_with_iso_default(global_object, calendar);
  317. }
  318. // 12.1.24 DateFromFields ( calendar, fields, options ), https://tc39.es/proposal-temporal/#sec-temporal-datefromfields
  319. ThrowCompletionOr<PlainDate*> date_from_fields(GlobalObject& global_object, Object& calendar, Object const& fields, Object const& options)
  320. {
  321. auto& vm = global_object.vm();
  322. // 1. Assert: Type(calendar) is Object.
  323. // 2. Assert: Type(fields) is Object.
  324. // 3. Let date be ? Invoke(calendar, "dateFromFields", « fields, options »).
  325. auto date = TRY(Value(&calendar).invoke(global_object, vm.names.dateFromFields, &fields, &options));
  326. // 4. Perform ? RequireInternalSlot(date, [[InitializedTemporalDate]]).
  327. auto* date_object = date.to_object(global_object);
  328. if (auto* exception = vm.exception())
  329. return throw_completion(exception->value());
  330. if (!is<PlainDate>(date_object))
  331. return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObjectOfType, "Temporal.PlainDate");
  332. // 5. Return date.
  333. return static_cast<PlainDate*>(date_object);
  334. }
  335. // 12.1.25 YearMonthFromFields ( calendar, fields [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-yearmonthfromfields
  336. ThrowCompletionOr<PlainYearMonth*> year_month_from_fields(GlobalObject& global_object, Object& calendar, Object const& fields, Object const* options)
  337. {
  338. auto& vm = global_object.vm();
  339. // 1. Assert: Type(calendar) is Object.
  340. // 2. Assert: Type(fields) is Object.
  341. // 3. If options is not present, then
  342. // a. Set options to undefined.
  343. // 4. Else,
  344. // a. Assert: Type(options) is Object.
  345. // 5. Let yearMonth be ? Invoke(calendar, "yearMonthFromFields", « fields, options »).
  346. auto year_month = TRY(Value(&calendar).invoke(global_object, vm.names.yearMonthFromFields, &fields, options ?: js_undefined()));
  347. // 6. Perform ? RequireInternalSlot(yearMonth, [[InitializedTemporalYearMonth]]).
  348. auto* year_month_object = year_month.to_object(global_object);
  349. if (auto* exception = vm.exception())
  350. return throw_completion(exception->value());
  351. if (!is<PlainYearMonth>(year_month_object))
  352. return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObjectOfType, "Temporal.PlainYearMonth");
  353. // 7. Return yearMonth.
  354. return static_cast<PlainYearMonth*>(year_month_object);
  355. }
  356. // 12.1.26 MonthDayFromFields ( calendar, fields [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-monthdayfromfields
  357. ThrowCompletionOr<PlainMonthDay*> month_day_from_fields(GlobalObject& global_object, Object& calendar, Object const& fields, Object const* options)
  358. {
  359. auto& vm = global_object.vm();
  360. // 1. Assert: Type(calendar) is Object.
  361. // 2. Assert: Type(fields) is Object.
  362. // 3. If options is not present, then
  363. // a. Set options to undefined.
  364. // 4. Else,
  365. // a. Assert: Type(options) is Object.
  366. // 5. Let monthDay be ? Invoke(calendar, "monthDayFromFields", « fields, options »).
  367. auto month_day = TRY(Value(&calendar).invoke(global_object, vm.names.monthDayFromFields, &fields, options ?: js_undefined()));
  368. // 6. Perform ? RequireInternalSlot(monthDay, [[InitializedTemporalMonthDay]]).
  369. auto* month_day_object = month_day.to_object(global_object);
  370. if (auto* exception = vm.exception())
  371. return throw_completion(exception->value());
  372. if (!is<PlainMonthDay>(month_day_object))
  373. return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObjectOfType, "Temporal.PlainMonthDay");
  374. // 7. Return monthDay.
  375. return static_cast<PlainMonthDay*>(month_day_object);
  376. }
  377. // 12.1.27 FormatCalendarAnnotation ( id, showCalendar ), https://tc39.es/proposal-temporal/#sec-temporal-formatcalendarannotation
  378. String format_calendar_annotation(StringView id, StringView show_calendar)
  379. {
  380. // 1. Assert: showCalendar is "auto", "always", or "never".
  381. VERIFY(show_calendar == "auto"sv || show_calendar == "always"sv || show_calendar == "never"sv);
  382. // 2. If showCalendar is "never", return the empty String.
  383. if (show_calendar == "never"sv)
  384. return String::empty();
  385. // 3. If showCalendar is "auto" and id is "iso8601", return the empty String.
  386. if (show_calendar == "auto"sv && id == "iso8601"sv)
  387. return String::empty();
  388. // 4. Return the string-concatenation of "[u-ca=", id, and "]".
  389. return String::formatted("[u-ca={}]", id);
  390. }
  391. // 12.1.28 CalendarEquals ( one, two ), https://tc39.es/proposal-temporal/#sec-temporal-calendarequals
  392. ThrowCompletionOr<bool> calendar_equals(GlobalObject& global_object, Object& one, Object& two)
  393. {
  394. auto& vm = global_object.vm();
  395. // 1. If one and two are the same Object value, return true.
  396. if (&one == &two)
  397. return true;
  398. // 2. Let calendarOne be ? ToString(one).
  399. auto calendar_one = Value(&one).to_string(global_object);
  400. if (auto* exception = vm.exception())
  401. return throw_completion(exception->value());
  402. // 3. Let calendarTwo be ? ToString(two).
  403. auto calendar_two = Value(&two).to_string(global_object);
  404. if (auto* exception = vm.exception())
  405. return throw_completion(exception->value());
  406. // 4. If calendarOne is calendarTwo, return true.
  407. if (calendar_one == calendar_two)
  408. return true;
  409. // 5. Return false.
  410. return false;
  411. }
  412. // 12.1.29 ConsolidateCalendars ( one, two ), https://tc39.es/proposal-temporal/#sec-temporal-consolidatecalendars
  413. ThrowCompletionOr<Object*> consolidate_calendars(GlobalObject& global_object, Object& one, Object& two)
  414. {
  415. auto& vm = global_object.vm();
  416. // 1. If one and two are the same Object value, return two.
  417. if (&one == &two)
  418. return &two;
  419. // 2. Let calendarOne be ? ToString(one).
  420. auto calendar_one = Value(&one).to_string(global_object);
  421. if (auto* exception = vm.exception())
  422. return throw_completion(exception->value());
  423. // 3. Let calendarTwo be ? ToString(two).
  424. auto calendar_two = Value(&two).to_string(global_object);
  425. if (auto* exception = vm.exception())
  426. return throw_completion(exception->value());
  427. // 4. If calendarOne is calendarTwo, return two.
  428. if (calendar_one == calendar_two)
  429. return &two;
  430. // 5. If calendarOne is "iso8601", return two.
  431. if (calendar_one == "iso8601"sv)
  432. return &two;
  433. // 6. If calendarTwo is "iso8601", return one.
  434. if (calendar_two == "iso8601"sv)
  435. return &one;
  436. // 7. Throw a RangeError exception.
  437. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidCalendar);
  438. }
  439. // 12.1.30 IsISOLeapYear ( year ), https://tc39.es/proposal-temporal/#sec-temporal-isisoleapyear
  440. bool is_iso_leap_year(i32 year)
  441. {
  442. // 1. Assert: year is an integer.
  443. // 2. If year modulo 4 ≠ 0, return false.
  444. if (year % 4 != 0)
  445. return false;
  446. // 3. If year modulo 400 = 0, return true.
  447. if (year % 400 == 0)
  448. return true;
  449. // 4. If year modulo 100 = 0, return false.
  450. if (year % 100 == 0)
  451. return false;
  452. // 5. Return true.
  453. return true;
  454. }
  455. // 12.1.31 ISODaysInYear ( year ), https://tc39.es/proposal-temporal/#sec-temporal-isodaysinyear
  456. u16 iso_days_in_year(i32 year)
  457. {
  458. // 1. Assert: year is an integer.
  459. // 2. If ! IsISOLeapYear(year) is true, then
  460. if (is_iso_leap_year(year)) {
  461. // a. Return 366.
  462. return 366;
  463. }
  464. // 3. Return 365.
  465. return 365;
  466. }
  467. // 12.1.32 ISODaysInMonth ( year, month ), https://tc39.es/proposal-temporal/#sec-temporal-isodaysinmonth
  468. u8 iso_days_in_month(i32 year, u8 month)
  469. {
  470. // 1. Assert: year is an integer.
  471. // 2. Assert: month is an integer, month ≥ 1, and month ≤ 12.
  472. VERIFY(month >= 1 && month <= 12);
  473. // 3. If month is 1, 3, 5, 7, 8, 10, or 12, return 31.
  474. if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12)
  475. return 31;
  476. // 4. If month is 4, 6, 9, or 11, return 30.
  477. if (month == 4 || month == 6 || month == 9 || month == 11)
  478. return 30;
  479. // 5. If ! IsISOLeapYear(year) is true, return 29.
  480. if (is_iso_leap_year(year))
  481. return 29;
  482. // 6. Return 28.
  483. return 28;
  484. }
  485. // 12.1.33 ToISODayOfWeek ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-toisodayofweek
  486. u8 to_iso_day_of_week(i32 year, u8 month, u8 day)
  487. {
  488. // 1. Assert: year is an integer.
  489. // 2. Assert: month is an integer.
  490. // 3. Assert: day is an integer.
  491. // 4. Let date be the date given by year, month, and day.
  492. // 5. Return date's day of the week according to ISO-8601.
  493. // NOTE: Implemented based on https://cs.uwaterloo.ca/~alopez-o/math-faq/node73.html
  494. auto normalized_month = month + (month < 3 ? 10 : -2);
  495. auto normalized_year = year - (month < 3 ? 1 : 0);
  496. auto century = normalized_year / 100;
  497. auto truncated_year = normalized_year - (century * 100);
  498. auto result = (day + static_cast<u8>((2.6 * normalized_month) - 0.2) - (2 * century) + truncated_year + (truncated_year / 4) + (century / 4)) % 7;
  499. if (result <= 0) // Mathematical modulo
  500. result += 7;
  501. return result;
  502. }
  503. // 12.1.34 ToISODayOfYear ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-toisodayofyear
  504. u16 to_iso_day_of_year(i32 year, u8 month, u8 day)
  505. {
  506. // 1. Assert: year is an integer.
  507. // 2. Assert: month is an integer.
  508. // 3. Assert: day is an integer.
  509. // 4. Let date be the date given by year, month, and day.
  510. // 5. Return date's ordinal date in the year according to ISO-8601.
  511. u16 days = day;
  512. for (u8 i = month - 1; i > 0; --i)
  513. days += iso_days_in_month(year, i);
  514. return days;
  515. }
  516. // 12.1.35 ToISOWeekOfYear ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-toisoweekofyear
  517. u8 to_iso_week_of_year(i32 year, u8 month, u8 day)
  518. {
  519. // 1. Assert: year is an integer.
  520. // 2. Assert: month is an integer.
  521. // 3. Assert: day is an integer.
  522. // 4. Let date be the date given by year, month, and day.
  523. // 5. Return date's week number according to ISO-8601.
  524. auto day_of_year = to_iso_day_of_year(year, month, day);
  525. auto day_of_week = to_iso_day_of_week(year, month, day);
  526. auto week = (day_of_year - day_of_week + 10) / 7;
  527. if (week < 1) {
  528. auto day_of_jump = to_iso_day_of_week(year, 1, 1);
  529. if (day_of_jump == 5 || (is_iso_leap_year(year) && day_of_jump == 6))
  530. return 53;
  531. else
  532. return 52;
  533. } else if (week == 53) {
  534. auto days_in_year = iso_days_in_year(year);
  535. if (days_in_year - day_of_year < 4 - day_of_week)
  536. return 1;
  537. }
  538. return week;
  539. }
  540. // 12.1.36 BuildISOMonthCode ( month ), https://tc39.es/proposal-temporal/#sec-buildisomonthcode
  541. String build_iso_month_code(u8 month)
  542. {
  543. return String::formatted("M{:02}", month);
  544. }
  545. // 12.1.37 ResolveISOMonth ( fields ), https://tc39.es/proposal-temporal/#sec-temporal-resolveisomonth
  546. ThrowCompletionOr<double> resolve_iso_month(GlobalObject& global_object, Object const& fields)
  547. {
  548. auto& vm = global_object.vm();
  549. // 1. Let month be ? Get(fields, "month").
  550. auto month = TRY(fields.get(vm.names.month));
  551. // 2. Let monthCode be ? Get(fields, "monthCode").
  552. auto month_code = TRY(fields.get(vm.names.monthCode));
  553. // 3. If monthCode is undefined, then
  554. if (month_code.is_undefined()) {
  555. // a. If month is undefined, throw a TypeError exception.
  556. if (month.is_undefined())
  557. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.month.as_string());
  558. // b. Return month.
  559. return month.as_double();
  560. }
  561. // 4. Assert: Type(monthCode) is String.
  562. VERIFY(month_code.is_string());
  563. auto& month_code_string = month_code.as_string().string();
  564. // 5. Let monthLength be the length of monthCode.
  565. auto month_length = month_code_string.length();
  566. // 6. If monthLength is not 3, throw a RangeError exception.
  567. if (month_length != 3)
  568. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidMonthCode);
  569. // 7. Let numberPart be the substring of monthCode from 1.
  570. auto number_part = month_code_string.substring(1);
  571. // 8. Set numberPart to ! ToIntegerOrInfinity(numberPart).
  572. auto number_part_integer = Value(js_string(vm, move(number_part))).to_integer_or_infinity(global_object);
  573. // 9. If numberPart < 1 or numberPart > 12, throw a RangeError exception.
  574. if (number_part_integer < 1 || number_part_integer > 12)
  575. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidMonthCode);
  576. // 10. If month is not undefined, and month ≠ numberPart, then
  577. if (!month.is_undefined() && month.as_double() != number_part_integer) {
  578. // a. Throw a RangeError exception.
  579. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidMonthCode);
  580. }
  581. // 11. If ! SameValueNonNumeric(monthCode, ! BuildISOMonthCode(numberPart)) is false, then
  582. if (month_code_string != build_iso_month_code(number_part_integer)) {
  583. // a. Throw a RangeError exception.
  584. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidMonthCode);
  585. }
  586. // 12. Return numberPart.
  587. return number_part_integer;
  588. }
  589. // 12.1.38 ISODateFromFields ( fields, options ), https://tc39.es/proposal-temporal/#sec-temporal-isodatefromfields
  590. ThrowCompletionOr<ISODate> iso_date_from_fields(GlobalObject& global_object, Object const& fields, Object const& options)
  591. {
  592. auto& vm = global_object.vm();
  593. // 1. Assert: Type(fields) is Object.
  594. // 2. Let overflow be ? ToTemporalOverflow(options).
  595. auto overflow = TRY(to_temporal_overflow(global_object, options));
  596. // 3. Set fields to ? PrepareTemporalFields(fields, « "day", "month", "monthCode", "year" », «»).
  597. auto* prepared_fields = TRY(prepare_temporal_fields(global_object, fields, { "day", "month", "monthCode", "year" }, {}));
  598. // 4. Let year be ? Get(fields, "year").
  599. auto year = TRY(prepared_fields->get(vm.names.year));
  600. // 5. If year is undefined, throw a TypeError exception.
  601. if (year.is_undefined())
  602. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.year.as_string());
  603. // 6. Let month be ? ResolveISOMonth(fields).
  604. auto month = TRY(resolve_iso_month(global_object, *prepared_fields));
  605. // 7. Let day be ? Get(fields, "day").
  606. auto day = TRY(prepared_fields->get(vm.names.day));
  607. // 8. If day is undefined, throw a TypeError exception.
  608. if (day.is_undefined())
  609. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.day.as_string());
  610. // 9. Return ? RegulateISODate(year, month, day, overflow).
  611. return regulate_iso_date(global_object, year.as_double(), month, day.as_double(), overflow);
  612. }
  613. // 12.1.39 ISOYearMonthFromFields ( fields, options ), https://tc39.es/proposal-temporal/#sec-temporal-isoyearmonthfromfields
  614. ThrowCompletionOr<ISOYearMonth> iso_year_month_from_fields(GlobalObject& global_object, Object const& fields, Object const& options)
  615. {
  616. auto& vm = global_object.vm();
  617. // 1. Assert: Type(fields) is Object.
  618. // 2. Let overflow be ? ToTemporalOverflow(options).
  619. auto overflow = TRY(to_temporal_overflow(global_object, options));
  620. // 3. Set fields to ? PrepareTemporalFields(fields, « "month", "monthCode", "year" », «»).
  621. auto* prepared_fields = TRY(prepare_temporal_fields(global_object, fields, { "month"sv, "monthCode"sv, "year"sv }, {}));
  622. // 4. Let year be ? Get(fields, "year").
  623. auto year = TRY(prepared_fields->get(vm.names.year));
  624. // 5. If year is undefined, throw a TypeError exception.
  625. if (year.is_undefined())
  626. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.year.as_string());
  627. // 6. Let month be ? ResolveISOMonth(fields).
  628. auto month = TRY(resolve_iso_month(global_object, *prepared_fields));
  629. // 7. Let result be ? RegulateISOYearMonth(year, month, overflow).
  630. auto result = TRY(regulate_iso_year_month(global_object, year.as_double(), month, overflow));
  631. // 8. Return the Record { [[Year]]: result.[[Year]], [[Month]]: result.[[Month]], [[ReferenceISODay]]: 1 }.
  632. return ISOYearMonth { .year = result.year, .month = result.month, .reference_iso_day = 1 };
  633. }
  634. // 12.1.40 ISOMonthDayFromFields ( fields, options ), https://tc39.es/proposal-temporal/#sec-temporal-isomonthdayfromfields
  635. ThrowCompletionOr<ISOMonthDay> iso_month_day_from_fields(GlobalObject& global_object, Object const& fields, Object const& options)
  636. {
  637. auto& vm = global_object.vm();
  638. // 1. Assert: Type(fields) is Object.
  639. // 2. Let overflow be ? ToTemporalOverflow(options).
  640. auto overflow = TRY(to_temporal_overflow(global_object, options));
  641. // 3. Set fields to ? PrepareTemporalFields(fields, « "day", "month", "monthCode", "year" », «»).
  642. auto* prepared_fields = TRY(prepare_temporal_fields(global_object, fields, { "day"sv, "month"sv, "monthCode"sv, "year"sv }, {}));
  643. // 4. Let month be ? Get(fields, "month").
  644. auto month_value = TRY(prepared_fields->get(vm.names.month));
  645. // 5. Let monthCode be ? Get(fields, "monthCode").
  646. auto month_code = TRY(prepared_fields->get(vm.names.monthCode));
  647. // 6. Let year be ? Get(fields, "year").
  648. auto year = TRY(prepared_fields->get(vm.names.year));
  649. // 7. If month is not undefined, and monthCode and year are both undefined, then
  650. if (!month_value.is_undefined() && month_code.is_undefined() && year.is_undefined()) {
  651. // a. Throw a TypeError exception.
  652. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, "monthCode or year");
  653. }
  654. // 8. Set month to ? ResolveISOMonth(fields).
  655. auto month = TRY(resolve_iso_month(global_object, *prepared_fields));
  656. // 9. Let day be ? Get(fields, "day").
  657. auto day = TRY(prepared_fields->get(vm.names.day));
  658. // 10. If day is undefined, throw a TypeError exception.
  659. if (day.is_undefined())
  660. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.day.as_string());
  661. // 11. Let referenceISOYear be 1972 (the first leap year after the Unix epoch).
  662. i32 reference_iso_year = 1972;
  663. Optional<ISODate> result;
  664. // 12. If monthCode is undefined, then
  665. if (month_code.is_undefined()) {
  666. // a. Let result be ? RegulateISODate(year, month, day, overflow).
  667. result = TRY(regulate_iso_date(global_object, year.as_double(), month, day.as_double(), overflow));
  668. }
  669. // 13. Else,
  670. else {
  671. // a. Let result be ? RegulateISODate(referenceISOYear, month, day, overflow).
  672. result = TRY(regulate_iso_date(global_object, reference_iso_year, month, day.as_double(), overflow));
  673. }
  674. // 14. Return the Record { [[Month]]: result.[[Month]], [[Day]]: result.[[Day]], [[ReferenceISOYear]]: referenceISOYear }.
  675. return ISOMonthDay { .month = result->month, .day = result->day, .reference_iso_year = reference_iso_year };
  676. }
  677. // 12.1.41 ISOYear ( temporalObject ), https://tc39.es/proposal-temporal/#sec-temporal-isoyear
  678. i32 iso_year(Object& temporal_object)
  679. {
  680. // 1. Assert: temporalObject has an [[ISOYear]] internal slot.
  681. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  682. // 2. Return 𝔽(temporalObject.[[ISOYear]]).
  683. if (is<PlainDate>(temporal_object))
  684. return static_cast<PlainDate&>(temporal_object).iso_year();
  685. if (is<PlainDateTime>(temporal_object))
  686. return static_cast<PlainDateTime&>(temporal_object).iso_year();
  687. if (is<PlainYearMonth>(temporal_object))
  688. return static_cast<PlainYearMonth&>(temporal_object).iso_year();
  689. if (is<PlainMonthDay>(temporal_object))
  690. return static_cast<PlainMonthDay&>(temporal_object).iso_year();
  691. VERIFY_NOT_REACHED();
  692. }
  693. // 12.1.42 ISOMonth ( temporalObject ), https://tc39.es/proposal-temporal/#sec-temporal-isomonth
  694. u8 iso_month(Object& temporal_object)
  695. {
  696. // 1. Assert: temporalObject has an [[ISOMonth]] internal slot.
  697. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  698. // 2. Return 𝔽(temporalObject.[[ISOMonth]]).
  699. if (is<PlainDate>(temporal_object))
  700. return static_cast<PlainDate&>(temporal_object).iso_month();
  701. if (is<PlainDateTime>(temporal_object))
  702. return static_cast<PlainDateTime&>(temporal_object).iso_month();
  703. if (is<PlainYearMonth>(temporal_object))
  704. return static_cast<PlainYearMonth&>(temporal_object).iso_month();
  705. if (is<PlainMonthDay>(temporal_object))
  706. return static_cast<PlainMonthDay&>(temporal_object).iso_month();
  707. VERIFY_NOT_REACHED();
  708. }
  709. // 12.1.43 ISOMonthCode ( temporalObject ), https://tc39.es/proposal-temporal/#sec-temporal-isomonthcode
  710. String iso_month_code(Object& temporal_object)
  711. {
  712. // 1. Assert: temporalObject has an [[ISOMonth]] internal slot.
  713. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  714. // 2. Return ! BuildISOMonthCode(temporalObject.[[ISOMonth]]).
  715. if (is<PlainDate>(temporal_object))
  716. return build_iso_month_code(static_cast<PlainDate&>(temporal_object).iso_month());
  717. if (is<PlainDateTime>(temporal_object))
  718. return build_iso_month_code(static_cast<PlainDateTime&>(temporal_object).iso_month());
  719. if (is<PlainYearMonth>(temporal_object))
  720. return build_iso_month_code(static_cast<PlainYearMonth&>(temporal_object).iso_month());
  721. if (is<PlainMonthDay>(temporal_object))
  722. return build_iso_month_code(static_cast<PlainMonthDay&>(temporal_object).iso_month());
  723. VERIFY_NOT_REACHED();
  724. }
  725. // 12.1.44 ISODay ( temporalObject ), https://tc39.es/proposal-temporal/#sec-temporal-isomonthcode
  726. u8 iso_day(Object& temporal_object)
  727. {
  728. // 1. Assert: temporalObject has an [[ISODay]] internal slot.
  729. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  730. // 2. Return 𝔽(temporalObject.[[ISODay]]).
  731. if (is<PlainDate>(temporal_object))
  732. return static_cast<PlainDate&>(temporal_object).iso_day();
  733. if (is<PlainDateTime>(temporal_object))
  734. return static_cast<PlainDateTime&>(temporal_object).iso_day();
  735. if (is<PlainYearMonth>(temporal_object))
  736. return static_cast<PlainYearMonth&>(temporal_object).iso_day();
  737. if (is<PlainMonthDay>(temporal_object))
  738. return static_cast<PlainMonthDay&>(temporal_object).iso_day();
  739. VERIFY_NOT_REACHED();
  740. }
  741. // 12.1.45 DefaultMergeFields ( fields, additionalFields ), https://tc39.es/proposal-temporal/#sec-temporal-defaultmergefields
  742. ThrowCompletionOr<Object*> default_merge_fields(GlobalObject& global_object, Object const& fields, Object const& additional_fields)
  743. {
  744. auto& vm = global_object.vm();
  745. // 1. Let merged be ! OrdinaryObjectCreate(%Object.prototype%).
  746. auto* merged = Object::create(global_object, global_object.object_prototype());
  747. // 2. Let originalKeys be ? EnumerableOwnPropertyNames(fields, key).
  748. auto original_keys = fields.enumerable_own_property_names(Object::PropertyKind::Key);
  749. if (auto* exception = vm.exception())
  750. return throw_completion(exception->value());
  751. // 3. For each element nextKey of originalKeys, do
  752. for (auto& next_key : original_keys) {
  753. // a. If nextKey is not "month" or "monthCode", then
  754. if (next_key.as_string().string() != vm.names.month.as_string() && next_key.as_string().string() != vm.names.monthCode.as_string()) {
  755. auto property_name = PropertyName::from_value(global_object, next_key);
  756. // i. Let propValue be ? Get(fields, nextKey).
  757. auto prop_value = TRY(fields.get(property_name));
  758. // ii. If propValue is not undefined, then
  759. if (!prop_value.is_undefined()) {
  760. // 1. Perform ! CreateDataPropertyOrThrow(merged, nextKey, propValue).
  761. MUST(merged->create_data_property_or_throw(property_name, prop_value));
  762. }
  763. }
  764. }
  765. // 4. Let newKeys be ? EnumerableOwnPropertyNames(additionalFields, key).
  766. auto new_keys = additional_fields.enumerable_own_property_names(Object::PropertyKind::Key);
  767. if (auto* exception = vm.exception())
  768. return throw_completion(exception->value());
  769. // IMPLEMENTATION DEFINED: This is an optimization, so we don't have to iterate new_keys three times (worst case), but only once.
  770. bool new_keys_contains_month_or_month_code_property = false;
  771. // 5. For each element nextKey of newKeys, do
  772. for (auto& next_key : new_keys) {
  773. auto property_name = PropertyName::from_value(global_object, next_key);
  774. // a. Let propValue be ? Get(additionalFields, nextKey).
  775. auto prop_value = TRY(additional_fields.get(property_name));
  776. // b. If propValue is not undefined, then
  777. if (!prop_value.is_undefined()) {
  778. // i. Perform ! CreateDataPropertyOrThrow(merged, nextKey, propValue).
  779. MUST(merged->create_data_property_or_throw(property_name, prop_value));
  780. }
  781. // See comment above.
  782. new_keys_contains_month_or_month_code_property |= next_key.as_string().string() == vm.names.month.as_string() || next_key.as_string().string() == vm.names.monthCode.as_string();
  783. }
  784. // 6. If newKeys does not contain either "month" or "monthCode", then
  785. if (!new_keys_contains_month_or_month_code_property) {
  786. // a. Let month be ? Get(fields, "month").
  787. auto month = TRY(fields.get(vm.names.month));
  788. // b. If month is not undefined, then
  789. if (!month.is_undefined()) {
  790. // i. Perform ! CreateDataPropertyOrThrow(merged, "month", month).
  791. MUST(merged->create_data_property_or_throw(vm.names.month, month));
  792. }
  793. // c. Let monthCode be ? Get(fields, "monthCode").
  794. auto month_code = TRY(fields.get(vm.names.monthCode));
  795. // d. If monthCode is not undefined, then
  796. if (!month_code.is_undefined()) {
  797. // i. Perform ! CreateDataPropertyOrThrow(merged, "monthCode", monthCode).
  798. MUST(merged->create_data_property_or_throw(vm.names.monthCode, month_code));
  799. }
  800. }
  801. // 7. Return merged.
  802. return merged;
  803. }
  804. }