Calendar.cpp 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015
  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. auto has_property = temporal_calendar_like_object.has_property(vm.names.calendar);
  265. if (auto* exception = vm.exception())
  266. return throw_completion(exception->value());
  267. if (!has_property)
  268. return &temporal_calendar_like_object;
  269. // c. Set temporalCalendarLike to ? Get(temporalCalendarLike, "calendar").
  270. temporal_calendar_like = TRY(temporal_calendar_like_object.get(vm.names.calendar));
  271. // d. If Type(temporalCalendarLike) is Object and ? HasProperty(temporalCalendarLike, "calendar") is false, return temporalCalendarLike.
  272. if (temporal_calendar_like.is_object()) {
  273. has_property = temporal_calendar_like.as_object().has_property(vm.names.calendar);
  274. if (auto* exception = vm.exception())
  275. return throw_completion(exception->value());
  276. if (!has_property)
  277. return &temporal_calendar_like.as_object();
  278. }
  279. }
  280. // 2. Let identifier be ? ToString(temporalCalendarLike).
  281. auto identifier = temporal_calendar_like.to_string(global_object);
  282. if (auto* exception = vm.exception())
  283. return throw_completion(exception->value());
  284. // 3. If ! IsBuiltinCalendar(identifier) is false, then
  285. if (!is_builtin_calendar(identifier)) {
  286. // a. Let identifier be ? ParseTemporalCalendarString(identifier).
  287. identifier = TRY(parse_temporal_calendar_string(global_object, identifier));
  288. }
  289. // 4. Return ! CreateTemporalCalendar(identifier).
  290. return MUST(create_temporal_calendar(global_object, identifier));
  291. }
  292. // 12.1.22 ToTemporalCalendarWithISODefault ( temporalCalendarLike ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendarwithisodefault
  293. ThrowCompletionOr<Object*> to_temporal_calendar_with_iso_default(GlobalObject& global_object, Value temporal_calendar_like)
  294. {
  295. // 1. If temporalCalendarLike is undefined, then
  296. if (temporal_calendar_like.is_undefined()) {
  297. // a. Return ! GetISO8601Calendar().
  298. return get_iso8601_calendar(global_object);
  299. }
  300. // 2. Return ? ToTemporalCalendar(temporalCalendarLike).
  301. return to_temporal_calendar(global_object, temporal_calendar_like);
  302. }
  303. // 12.1.23 GetTemporalCalendarWithISODefault ( item ), https://tc39.es/proposal-temporal/#sec-temporal-gettemporalcalendarwithisodefault
  304. ThrowCompletionOr<Object*> get_temporal_calendar_with_iso_default(GlobalObject& global_object, Object& item)
  305. {
  306. auto& vm = global_object.vm();
  307. // 1. If item has an [[InitializedTemporalDate]], [[InitializedTemporalDateTime]], [[InitializedTemporalMonthDay]], [[InitializedTemporalTime]], [[InitializedTemporalYearMonth]], or [[InitializedTemporalZonedDateTime]] internal slot, then
  308. // a. Return item.[[Calendar]].
  309. if (is<PlainDate>(item))
  310. return &static_cast<PlainDate&>(item).calendar();
  311. if (is<PlainDateTime>(item))
  312. return &static_cast<PlainDateTime&>(item).calendar();
  313. if (is<PlainMonthDay>(item))
  314. return &static_cast<PlainMonthDay&>(item).calendar();
  315. if (is<PlainTime>(item))
  316. return &static_cast<PlainTime&>(item).calendar();
  317. if (is<PlainYearMonth>(item))
  318. return &static_cast<PlainYearMonth&>(item).calendar();
  319. if (is<ZonedDateTime>(item))
  320. return &static_cast<ZonedDateTime&>(item).calendar();
  321. // 2. Let calendar be ? Get(item, "calendar").
  322. auto calendar = TRY(item.get(vm.names.calendar));
  323. // 3. Return ? ToTemporalCalendarWithISODefault(calendar).
  324. return to_temporal_calendar_with_iso_default(global_object, calendar);
  325. }
  326. // 12.1.24 DateFromFields ( calendar, fields, options ), https://tc39.es/proposal-temporal/#sec-temporal-datefromfields
  327. ThrowCompletionOr<PlainDate*> date_from_fields(GlobalObject& global_object, Object& calendar, Object const& fields, Object const& options)
  328. {
  329. auto& vm = global_object.vm();
  330. // 1. Assert: Type(calendar) is Object.
  331. // 2. Assert: Type(fields) is Object.
  332. // 3. Let date be ? Invoke(calendar, "dateFromFields", « fields, options »).
  333. auto date = TRY(Value(&calendar).invoke(global_object, vm.names.dateFromFields, &fields, &options));
  334. // 4. Perform ? RequireInternalSlot(date, [[InitializedTemporalDate]]).
  335. auto* date_object = date.to_object(global_object);
  336. if (auto* exception = vm.exception())
  337. return throw_completion(exception->value());
  338. if (!is<PlainDate>(date_object))
  339. return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObjectOfType, "Temporal.PlainDate");
  340. // 5. Return date.
  341. return static_cast<PlainDate*>(date_object);
  342. }
  343. // 12.1.25 YearMonthFromFields ( calendar, fields [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-yearmonthfromfields
  344. ThrowCompletionOr<PlainYearMonth*> year_month_from_fields(GlobalObject& global_object, Object& calendar, Object const& fields, Object const* options)
  345. {
  346. auto& vm = global_object.vm();
  347. // 1. Assert: Type(calendar) is Object.
  348. // 2. Assert: Type(fields) is Object.
  349. // 3. If options is not present, then
  350. // a. Set options to undefined.
  351. // 4. Else,
  352. // a. Assert: Type(options) is Object.
  353. // 5. Let yearMonth be ? Invoke(calendar, "yearMonthFromFields", « fields, options »).
  354. auto year_month = TRY(Value(&calendar).invoke(global_object, vm.names.yearMonthFromFields, &fields, options ?: js_undefined()));
  355. // 6. Perform ? RequireInternalSlot(yearMonth, [[InitializedTemporalYearMonth]]).
  356. auto* year_month_object = year_month.to_object(global_object);
  357. if (auto* exception = vm.exception())
  358. return throw_completion(exception->value());
  359. if (!is<PlainYearMonth>(year_month_object))
  360. return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObjectOfType, "Temporal.PlainYearMonth");
  361. // 7. Return yearMonth.
  362. return static_cast<PlainYearMonth*>(year_month_object);
  363. }
  364. // 12.1.26 MonthDayFromFields ( calendar, fields [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-monthdayfromfields
  365. ThrowCompletionOr<PlainMonthDay*> month_day_from_fields(GlobalObject& global_object, Object& calendar, Object const& fields, Object const* options)
  366. {
  367. auto& vm = global_object.vm();
  368. // 1. Assert: Type(calendar) is Object.
  369. // 2. Assert: Type(fields) is Object.
  370. // 3. If options is not present, then
  371. // a. Set options to undefined.
  372. // 4. Else,
  373. // a. Assert: Type(options) is Object.
  374. // 5. Let monthDay be ? Invoke(calendar, "monthDayFromFields", « fields, options »).
  375. auto month_day = TRY(Value(&calendar).invoke(global_object, vm.names.monthDayFromFields, &fields, options ?: js_undefined()));
  376. // 6. Perform ? RequireInternalSlot(monthDay, [[InitializedTemporalMonthDay]]).
  377. auto* month_day_object = month_day.to_object(global_object);
  378. if (auto* exception = vm.exception())
  379. return throw_completion(exception->value());
  380. if (!is<PlainMonthDay>(month_day_object))
  381. return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObjectOfType, "Temporal.PlainMonthDay");
  382. // 7. Return monthDay.
  383. return static_cast<PlainMonthDay*>(month_day_object);
  384. }
  385. // 12.1.27 FormatCalendarAnnotation ( id, showCalendar ), https://tc39.es/proposal-temporal/#sec-temporal-formatcalendarannotation
  386. String format_calendar_annotation(StringView id, StringView show_calendar)
  387. {
  388. // 1. Assert: showCalendar is "auto", "always", or "never".
  389. VERIFY(show_calendar == "auto"sv || show_calendar == "always"sv || show_calendar == "never"sv);
  390. // 2. If showCalendar is "never", return the empty String.
  391. if (show_calendar == "never"sv)
  392. return String::empty();
  393. // 3. If showCalendar is "auto" and id is "iso8601", return the empty String.
  394. if (show_calendar == "auto"sv && id == "iso8601"sv)
  395. return String::empty();
  396. // 4. Return the string-concatenation of "[u-ca=", id, and "]".
  397. return String::formatted("[u-ca={}]", id);
  398. }
  399. // 12.1.28 CalendarEquals ( one, two ), https://tc39.es/proposal-temporal/#sec-temporal-calendarequals
  400. ThrowCompletionOr<bool> calendar_equals(GlobalObject& global_object, Object& one, Object& two)
  401. {
  402. auto& vm = global_object.vm();
  403. // 1. If one and two are the same Object value, return true.
  404. if (&one == &two)
  405. return true;
  406. // 2. Let calendarOne be ? ToString(one).
  407. auto calendar_one = Value(&one).to_string(global_object);
  408. if (auto* exception = vm.exception())
  409. return throw_completion(exception->value());
  410. // 3. Let calendarTwo be ? ToString(two).
  411. auto calendar_two = Value(&two).to_string(global_object);
  412. if (auto* exception = vm.exception())
  413. return throw_completion(exception->value());
  414. // 4. If calendarOne is calendarTwo, return true.
  415. if (calendar_one == calendar_two)
  416. return true;
  417. // 5. Return false.
  418. return false;
  419. }
  420. // 12.1.29 ConsolidateCalendars ( one, two ), https://tc39.es/proposal-temporal/#sec-temporal-consolidatecalendars
  421. ThrowCompletionOr<Object*> consolidate_calendars(GlobalObject& global_object, Object& one, Object& two)
  422. {
  423. auto& vm = global_object.vm();
  424. // 1. If one and two are the same Object value, return two.
  425. if (&one == &two)
  426. return &two;
  427. // 2. Let calendarOne be ? ToString(one).
  428. auto calendar_one = Value(&one).to_string(global_object);
  429. if (auto* exception = vm.exception())
  430. return throw_completion(exception->value());
  431. // 3. Let calendarTwo be ? ToString(two).
  432. auto calendar_two = Value(&two).to_string(global_object);
  433. if (auto* exception = vm.exception())
  434. return throw_completion(exception->value());
  435. // 4. If calendarOne is calendarTwo, return two.
  436. if (calendar_one == calendar_two)
  437. return &two;
  438. // 5. If calendarOne is "iso8601", return two.
  439. if (calendar_one == "iso8601"sv)
  440. return &two;
  441. // 6. If calendarTwo is "iso8601", return one.
  442. if (calendar_two == "iso8601"sv)
  443. return &one;
  444. // 7. Throw a RangeError exception.
  445. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidCalendar);
  446. }
  447. // 12.1.30 IsISOLeapYear ( year ), https://tc39.es/proposal-temporal/#sec-temporal-isisoleapyear
  448. bool is_iso_leap_year(i32 year)
  449. {
  450. // 1. Assert: year is an integer.
  451. // 2. If year modulo 4 ≠ 0, return false.
  452. if (year % 4 != 0)
  453. return false;
  454. // 3. If year modulo 400 = 0, return true.
  455. if (year % 400 == 0)
  456. return true;
  457. // 4. If year modulo 100 = 0, return false.
  458. if (year % 100 == 0)
  459. return false;
  460. // 5. Return true.
  461. return true;
  462. }
  463. // 12.1.31 ISODaysInYear ( year ), https://tc39.es/proposal-temporal/#sec-temporal-isodaysinyear
  464. u16 iso_days_in_year(i32 year)
  465. {
  466. // 1. Assert: year is an integer.
  467. // 2. If ! IsISOLeapYear(year) is true, then
  468. if (is_iso_leap_year(year)) {
  469. // a. Return 366.
  470. return 366;
  471. }
  472. // 3. Return 365.
  473. return 365;
  474. }
  475. // 12.1.32 ISODaysInMonth ( year, month ), https://tc39.es/proposal-temporal/#sec-temporal-isodaysinmonth
  476. u8 iso_days_in_month(i32 year, u8 month)
  477. {
  478. // 1. Assert: year is an integer.
  479. // 2. Assert: month is an integer, month ≥ 1, and month ≤ 12.
  480. VERIFY(month >= 1 && month <= 12);
  481. // 3. If month is 1, 3, 5, 7, 8, 10, or 12, return 31.
  482. if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12)
  483. return 31;
  484. // 4. If month is 4, 6, 9, or 11, return 30.
  485. if (month == 4 || month == 6 || month == 9 || month == 11)
  486. return 30;
  487. // 5. If ! IsISOLeapYear(year) is true, return 29.
  488. if (is_iso_leap_year(year))
  489. return 29;
  490. // 6. Return 28.
  491. return 28;
  492. }
  493. // 12.1.33 ToISODayOfWeek ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-toisodayofweek
  494. u8 to_iso_day_of_week(i32 year, u8 month, u8 day)
  495. {
  496. // 1. Assert: year is an integer.
  497. // 2. Assert: month is an integer.
  498. // 3. Assert: day is an integer.
  499. // 4. Let date be the date given by year, month, and day.
  500. // 5. Return date's day of the week according to ISO-8601.
  501. // NOTE: Implemented based on https://cs.uwaterloo.ca/~alopez-o/math-faq/node73.html
  502. auto normalized_month = month + (month < 3 ? 10 : -2);
  503. auto normalized_year = year - (month < 3 ? 1 : 0);
  504. auto century = normalized_year / 100;
  505. auto truncated_year = normalized_year - (century * 100);
  506. auto result = (day + static_cast<u8>((2.6 * normalized_month) - 0.2) - (2 * century) + truncated_year + (truncated_year / 4) + (century / 4)) % 7;
  507. if (result <= 0) // Mathematical modulo
  508. result += 7;
  509. return result;
  510. }
  511. // 12.1.34 ToISODayOfYear ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-toisodayofyear
  512. u16 to_iso_day_of_year(i32 year, u8 month, u8 day)
  513. {
  514. // 1. Assert: year is an integer.
  515. // 2. Assert: month is an integer.
  516. // 3. Assert: day is an integer.
  517. // 4. Let date be the date given by year, month, and day.
  518. // 5. Return date's ordinal date in the year according to ISO-8601.
  519. u16 days = day;
  520. for (u8 i = month - 1; i > 0; --i)
  521. days += iso_days_in_month(year, i);
  522. return days;
  523. }
  524. // 12.1.35 ToISOWeekOfYear ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-toisoweekofyear
  525. u8 to_iso_week_of_year(i32 year, u8 month, u8 day)
  526. {
  527. // 1. Assert: year is an integer.
  528. // 2. Assert: month is an integer.
  529. // 3. Assert: day is an integer.
  530. // 4. Let date be the date given by year, month, and day.
  531. // 5. Return date's week number according to ISO-8601.
  532. auto day_of_year = to_iso_day_of_year(year, month, day);
  533. auto day_of_week = to_iso_day_of_week(year, month, day);
  534. auto week = (day_of_year - day_of_week + 10) / 7;
  535. if (week < 1) {
  536. auto day_of_jump = to_iso_day_of_week(year, 1, 1);
  537. if (day_of_jump == 5 || (is_iso_leap_year(year) && day_of_jump == 6))
  538. return 53;
  539. else
  540. return 52;
  541. } else if (week == 53) {
  542. auto days_in_year = iso_days_in_year(year);
  543. if (days_in_year - day_of_year < 4 - day_of_week)
  544. return 1;
  545. }
  546. return week;
  547. }
  548. // 12.1.36 BuildISOMonthCode ( month ), https://tc39.es/proposal-temporal/#sec-buildisomonthcode
  549. String build_iso_month_code(u8 month)
  550. {
  551. return String::formatted("M{:02}", month);
  552. }
  553. // 12.1.37 ResolveISOMonth ( fields ), https://tc39.es/proposal-temporal/#sec-temporal-resolveisomonth
  554. ThrowCompletionOr<double> resolve_iso_month(GlobalObject& global_object, Object const& fields)
  555. {
  556. auto& vm = global_object.vm();
  557. // 1. Let month be ? Get(fields, "month").
  558. auto month = TRY(fields.get(vm.names.month));
  559. // 2. Let monthCode be ? Get(fields, "monthCode").
  560. auto month_code = TRY(fields.get(vm.names.monthCode));
  561. // 3. If monthCode is undefined, then
  562. if (month_code.is_undefined()) {
  563. // a. If month is undefined, throw a TypeError exception.
  564. if (month.is_undefined())
  565. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.month.as_string());
  566. // b. Return month.
  567. return month.as_double();
  568. }
  569. // 4. Assert: Type(monthCode) is String.
  570. VERIFY(month_code.is_string());
  571. auto& month_code_string = month_code.as_string().string();
  572. // 5. Let monthLength be the length of monthCode.
  573. auto month_length = month_code_string.length();
  574. // 6. If monthLength is not 3, throw a RangeError exception.
  575. if (month_length != 3)
  576. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidMonthCode);
  577. // 7. Let numberPart be the substring of monthCode from 1.
  578. auto number_part = month_code_string.substring(1);
  579. // 8. Set numberPart to ! ToIntegerOrInfinity(numberPart).
  580. auto number_part_integer = Value(js_string(vm, move(number_part))).to_integer_or_infinity(global_object);
  581. // 9. If numberPart < 1 or numberPart > 12, throw a RangeError exception.
  582. if (number_part_integer < 1 || number_part_integer > 12)
  583. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidMonthCode);
  584. // 10. If month is not undefined, and month ≠ numberPart, then
  585. if (!month.is_undefined() && month.as_double() != number_part_integer) {
  586. // a. Throw a RangeError exception.
  587. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidMonthCode);
  588. }
  589. // 11. If ! SameValueNonNumeric(monthCode, ! BuildISOMonthCode(numberPart)) is false, then
  590. if (month_code_string != build_iso_month_code(number_part_integer)) {
  591. // a. Throw a RangeError exception.
  592. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidMonthCode);
  593. }
  594. // 12. Return numberPart.
  595. return number_part_integer;
  596. }
  597. // 12.1.38 ISODateFromFields ( fields, options ), https://tc39.es/proposal-temporal/#sec-temporal-isodatefromfields
  598. ThrowCompletionOr<ISODate> iso_date_from_fields(GlobalObject& global_object, Object const& fields, Object const& options)
  599. {
  600. auto& vm = global_object.vm();
  601. // 1. Assert: Type(fields) is Object.
  602. // 2. Let overflow be ? ToTemporalOverflow(options).
  603. auto overflow = TRY(to_temporal_overflow(global_object, options));
  604. // 3. Set fields to ? PrepareTemporalFields(fields, « "day", "month", "monthCode", "year" », «»).
  605. auto* prepared_fields = TRY(prepare_temporal_fields(global_object, fields, { "day", "month", "monthCode", "year" }, {}));
  606. // 4. Let year be ? Get(fields, "year").
  607. auto year = TRY(prepared_fields->get(vm.names.year));
  608. // 5. If year is undefined, throw a TypeError exception.
  609. if (year.is_undefined())
  610. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.year.as_string());
  611. // 6. Let month be ? ResolveISOMonth(fields).
  612. auto month = TRY(resolve_iso_month(global_object, *prepared_fields));
  613. // 7. Let day be ? Get(fields, "day").
  614. auto day = TRY(prepared_fields->get(vm.names.day));
  615. // 8. If day is undefined, throw a TypeError exception.
  616. if (day.is_undefined())
  617. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.day.as_string());
  618. // 9. Return ? RegulateISODate(year, month, day, overflow).
  619. return regulate_iso_date(global_object, year.as_double(), month, day.as_double(), overflow);
  620. }
  621. // 12.1.39 ISOYearMonthFromFields ( fields, options ), https://tc39.es/proposal-temporal/#sec-temporal-isoyearmonthfromfields
  622. ThrowCompletionOr<ISOYearMonth> iso_year_month_from_fields(GlobalObject& global_object, Object const& fields, Object const& options)
  623. {
  624. auto& vm = global_object.vm();
  625. // 1. Assert: Type(fields) is Object.
  626. // 2. Let overflow be ? ToTemporalOverflow(options).
  627. auto overflow = TRY(to_temporal_overflow(global_object, options));
  628. // 3. Set fields to ? PrepareTemporalFields(fields, « "month", "monthCode", "year" », «»).
  629. auto* prepared_fields = TRY(prepare_temporal_fields(global_object, fields, { "month"sv, "monthCode"sv, "year"sv }, {}));
  630. // 4. Let year be ? Get(fields, "year").
  631. auto year = TRY(prepared_fields->get(vm.names.year));
  632. // 5. If year is undefined, throw a TypeError exception.
  633. if (year.is_undefined())
  634. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.year.as_string());
  635. // 6. Let month be ? ResolveISOMonth(fields).
  636. auto month = TRY(resolve_iso_month(global_object, *prepared_fields));
  637. // 7. Let result be ? RegulateISOYearMonth(year, month, overflow).
  638. auto result = TRY(regulate_iso_year_month(global_object, year.as_double(), month, overflow));
  639. // 8. Return the Record { [[Year]]: result.[[Year]], [[Month]]: result.[[Month]], [[ReferenceISODay]]: 1 }.
  640. return ISOYearMonth { .year = result.year, .month = result.month, .reference_iso_day = 1 };
  641. }
  642. // 12.1.40 ISOMonthDayFromFields ( fields, options ), https://tc39.es/proposal-temporal/#sec-temporal-isomonthdayfromfields
  643. ThrowCompletionOr<ISOMonthDay> iso_month_day_from_fields(GlobalObject& global_object, Object const& fields, Object const& options)
  644. {
  645. auto& vm = global_object.vm();
  646. // 1. Assert: Type(fields) is Object.
  647. // 2. Let overflow be ? ToTemporalOverflow(options).
  648. auto overflow = TRY(to_temporal_overflow(global_object, options));
  649. // 3. Set fields to ? PrepareTemporalFields(fields, « "day", "month", "monthCode", "year" », «»).
  650. auto* prepared_fields = TRY(prepare_temporal_fields(global_object, fields, { "day"sv, "month"sv, "monthCode"sv, "year"sv }, {}));
  651. // 4. Let month be ? Get(fields, "month").
  652. auto month_value = TRY(prepared_fields->get(vm.names.month));
  653. // 5. Let monthCode be ? Get(fields, "monthCode").
  654. auto month_code = TRY(prepared_fields->get(vm.names.monthCode));
  655. // 6. Let year be ? Get(fields, "year").
  656. auto year = TRY(prepared_fields->get(vm.names.year));
  657. // 7. If month is not undefined, and monthCode and year are both undefined, then
  658. if (!month_value.is_undefined() && month_code.is_undefined() && year.is_undefined()) {
  659. // a. Throw a TypeError exception.
  660. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, "monthCode or year");
  661. }
  662. // 8. Set month to ? ResolveISOMonth(fields).
  663. auto month = TRY(resolve_iso_month(global_object, *prepared_fields));
  664. // 9. Let day be ? Get(fields, "day").
  665. auto day = TRY(prepared_fields->get(vm.names.day));
  666. // 10. If day is undefined, throw a TypeError exception.
  667. if (day.is_undefined())
  668. return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, vm.names.day.as_string());
  669. // 11. Let referenceISOYear be 1972 (the first leap year after the Unix epoch).
  670. i32 reference_iso_year = 1972;
  671. Optional<ISODate> result;
  672. // 12. If monthCode is undefined, then
  673. if (month_code.is_undefined()) {
  674. // a. Let result be ? RegulateISODate(year, month, day, overflow).
  675. result = TRY(regulate_iso_date(global_object, year.as_double(), month, day.as_double(), overflow));
  676. }
  677. // 13. Else,
  678. else {
  679. // a. Let result be ? RegulateISODate(referenceISOYear, month, day, overflow).
  680. result = TRY(regulate_iso_date(global_object, reference_iso_year, month, day.as_double(), overflow));
  681. }
  682. // 14. Return the Record { [[Month]]: result.[[Month]], [[Day]]: result.[[Day]], [[ReferenceISOYear]]: referenceISOYear }.
  683. return ISOMonthDay { .month = result->month, .day = result->day, .reference_iso_year = reference_iso_year };
  684. }
  685. // 12.1.41 ISOYear ( temporalObject ), https://tc39.es/proposal-temporal/#sec-temporal-isoyear
  686. i32 iso_year(Object& temporal_object)
  687. {
  688. // 1. Assert: temporalObject has an [[ISOYear]] internal slot.
  689. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  690. // 2. Return 𝔽(temporalObject.[[ISOYear]]).
  691. if (is<PlainDate>(temporal_object))
  692. return static_cast<PlainDate&>(temporal_object).iso_year();
  693. if (is<PlainDateTime>(temporal_object))
  694. return static_cast<PlainDateTime&>(temporal_object).iso_year();
  695. if (is<PlainYearMonth>(temporal_object))
  696. return static_cast<PlainYearMonth&>(temporal_object).iso_year();
  697. if (is<PlainMonthDay>(temporal_object))
  698. return static_cast<PlainMonthDay&>(temporal_object).iso_year();
  699. VERIFY_NOT_REACHED();
  700. }
  701. // 12.1.42 ISOMonth ( temporalObject ), https://tc39.es/proposal-temporal/#sec-temporal-isomonth
  702. u8 iso_month(Object& temporal_object)
  703. {
  704. // 1. Assert: temporalObject has an [[ISOMonth]] internal slot.
  705. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  706. // 2. Return 𝔽(temporalObject.[[ISOMonth]]).
  707. if (is<PlainDate>(temporal_object))
  708. return static_cast<PlainDate&>(temporal_object).iso_month();
  709. if (is<PlainDateTime>(temporal_object))
  710. return static_cast<PlainDateTime&>(temporal_object).iso_month();
  711. if (is<PlainYearMonth>(temporal_object))
  712. return static_cast<PlainYearMonth&>(temporal_object).iso_month();
  713. if (is<PlainMonthDay>(temporal_object))
  714. return static_cast<PlainMonthDay&>(temporal_object).iso_month();
  715. VERIFY_NOT_REACHED();
  716. }
  717. // 12.1.43 ISOMonthCode ( temporalObject ), https://tc39.es/proposal-temporal/#sec-temporal-isomonthcode
  718. String iso_month_code(Object& temporal_object)
  719. {
  720. // 1. Assert: temporalObject has an [[ISOMonth]] internal slot.
  721. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  722. // 2. Return ! BuildISOMonthCode(temporalObject.[[ISOMonth]]).
  723. if (is<PlainDate>(temporal_object))
  724. return build_iso_month_code(static_cast<PlainDate&>(temporal_object).iso_month());
  725. if (is<PlainDateTime>(temporal_object))
  726. return build_iso_month_code(static_cast<PlainDateTime&>(temporal_object).iso_month());
  727. if (is<PlainYearMonth>(temporal_object))
  728. return build_iso_month_code(static_cast<PlainYearMonth&>(temporal_object).iso_month());
  729. if (is<PlainMonthDay>(temporal_object))
  730. return build_iso_month_code(static_cast<PlainMonthDay&>(temporal_object).iso_month());
  731. VERIFY_NOT_REACHED();
  732. }
  733. // 12.1.44 ISODay ( temporalObject ), https://tc39.es/proposal-temporal/#sec-temporal-isomonthcode
  734. u8 iso_day(Object& temporal_object)
  735. {
  736. // 1. Assert: temporalObject has an [[ISODay]] internal slot.
  737. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  738. // 2. Return 𝔽(temporalObject.[[ISODay]]).
  739. if (is<PlainDate>(temporal_object))
  740. return static_cast<PlainDate&>(temporal_object).iso_day();
  741. if (is<PlainDateTime>(temporal_object))
  742. return static_cast<PlainDateTime&>(temporal_object).iso_day();
  743. if (is<PlainYearMonth>(temporal_object))
  744. return static_cast<PlainYearMonth&>(temporal_object).iso_day();
  745. if (is<PlainMonthDay>(temporal_object))
  746. return static_cast<PlainMonthDay&>(temporal_object).iso_day();
  747. VERIFY_NOT_REACHED();
  748. }
  749. // 12.1.45 DefaultMergeFields ( fields, additionalFields ), https://tc39.es/proposal-temporal/#sec-temporal-defaultmergefields
  750. ThrowCompletionOr<Object*> default_merge_fields(GlobalObject& global_object, Object const& fields, Object const& additional_fields)
  751. {
  752. auto& vm = global_object.vm();
  753. // 1. Let merged be ! OrdinaryObjectCreate(%Object.prototype%).
  754. auto* merged = Object::create(global_object, global_object.object_prototype());
  755. // 2. Let originalKeys be ? EnumerableOwnPropertyNames(fields, key).
  756. auto original_keys = fields.enumerable_own_property_names(Object::PropertyKind::Key);
  757. if (auto* exception = vm.exception())
  758. return throw_completion(exception->value());
  759. // 3. For each element nextKey of originalKeys, do
  760. for (auto& next_key : original_keys) {
  761. // a. If nextKey is not "month" or "monthCode", then
  762. if (next_key.as_string().string() != vm.names.month.as_string() && next_key.as_string().string() != vm.names.monthCode.as_string()) {
  763. auto property_name = PropertyName::from_value(global_object, next_key);
  764. // i. Let propValue be ? Get(fields, nextKey).
  765. auto prop_value = TRY(fields.get(property_name));
  766. // ii. If propValue is not undefined, then
  767. if (!prop_value.is_undefined()) {
  768. // 1. Perform ! CreateDataPropertyOrThrow(merged, nextKey, propValue).
  769. merged->create_data_property_or_throw(property_name, prop_value);
  770. }
  771. }
  772. }
  773. // 4. Let newKeys be ? EnumerableOwnPropertyNames(additionalFields, key).
  774. auto new_keys = additional_fields.enumerable_own_property_names(Object::PropertyKind::Key);
  775. if (auto* exception = vm.exception())
  776. return throw_completion(exception->value());
  777. // IMPLEMENTATION DEFINED: This is an optimization, so we don't have to iterate new_keys three times (worst case), but only once.
  778. bool new_keys_contains_month_or_month_code_property = false;
  779. // 5. For each element nextKey of newKeys, do
  780. for (auto& next_key : new_keys) {
  781. auto property_name = PropertyName::from_value(global_object, next_key);
  782. // a. Let propValue be ? Get(additionalFields, nextKey).
  783. auto prop_value = TRY(additional_fields.get(property_name));
  784. // b. If propValue is not undefined, then
  785. if (!prop_value.is_undefined()) {
  786. // i. Perform ! CreateDataPropertyOrThrow(merged, nextKey, propValue).
  787. merged->create_data_property_or_throw(property_name, prop_value);
  788. }
  789. // See comment above.
  790. 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();
  791. }
  792. // 6. If newKeys does not contain either "month" or "monthCode", then
  793. if (!new_keys_contains_month_or_month_code_property) {
  794. // a. Let month be ? Get(fields, "month").
  795. auto month = TRY(fields.get(vm.names.month));
  796. // b. If month is not undefined, then
  797. if (!month.is_undefined()) {
  798. // i. Perform ! CreateDataPropertyOrThrow(merged, "month", month).
  799. merged->create_data_property_or_throw(vm.names.month, month);
  800. }
  801. // c. Let monthCode be ? Get(fields, "monthCode").
  802. auto month_code = TRY(fields.get(vm.names.monthCode));
  803. // d. If monthCode is not undefined, then
  804. if (!month_code.is_undefined()) {
  805. // i. Perform ! CreateDataPropertyOrThrow(merged, "monthCode", monthCode).
  806. merged->create_data_property_or_throw(vm.names.monthCode, month_code);
  807. }
  808. }
  809. // 7. Return merged.
  810. return merged;
  811. }
  812. }