/* * Copyright (c) 2021, Idan Horowitz * Copyright (c) 2021, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include #include #include namespace JS::Temporal { static Optional to_option_type(Value value) { if (value.is_boolean()) return OptionType::Boolean; if (value.is_string()) return OptionType::String; if (value.is_number()) return OptionType::Number; return {}; } // 13.1 IterableToListOfType ( items, elementTypes ), https://tc39.es/proposal-temporal/#sec-iterabletolistoftype MarkedValueList iterable_to_list_of_type(GlobalObject& global_object, Value items, Vector const& element_types) { auto& vm = global_object.vm(); auto& heap = global_object.heap(); // 1. Let iteratorRecord be ? GetIterator(items, sync). auto iterator_record = get_iterator(global_object, items, IteratorHint::Sync); if (vm.exception()) return MarkedValueList { heap }; // 2. Let values be a new empty List. MarkedValueList values(heap); // 3. Let next be true. auto next = true; // 4. Repeat, while next is not false, while (next) { // a. Set next to ? IteratorStep(iteratorRecord). auto* iterator_result = iterator_step(global_object, *iterator_record); if (vm.exception()) return MarkedValueList { heap }; next = iterator_result; // b. If next is not false, then if (next) { // i. Let nextValue be ? IteratorValue(next). auto next_value = iterator_value(global_object, *iterator_result); if (vm.exception()) return MarkedValueList { heap }; // ii. If Type(nextValue) is not an element of elementTypes, then if (auto type = to_option_type(next_value); !type.has_value() || !element_types.contains_slow(*type)) { // 1. Let completion be ThrowCompletion(a newly created TypeError object). vm.throw_exception(global_object, ErrorType::FixmeAddAnErrorString); // 2. Return ? IteratorClose(iteratorRecord, completion). iterator_close(*iterator_record); return MarkedValueList { heap }; } // iii. Append nextValue to the end of the List values. values.append(next_value); } } // 5. Return values. return values; } // 13.2 GetOptionsObject ( options ), https://tc39.es/proposal-temporal/#sec-getoptionsobject Object* get_options_object(GlobalObject& global_object, Value options) { auto& vm = global_object.vm(); // 1. If options is undefined, then if (options.is_undefined()) { // a. Return ! OrdinaryObjectCreate(null). return Object::create(global_object, nullptr); } // 2. If Type(options) is Object, then if (options.is_object()) { // a. Return options. return &options.as_object(); } // 3. Throw a TypeError exception. vm.throw_exception(global_object, ErrorType::NotAnObject, "Options"); return {}; } // 13.3 GetOption ( options, property, types, values, fallback ), https://tc39.es/proposal-temporal/#sec-getoption Value get_option(GlobalObject& global_object, Object& options, String const& property, Vector const& types, Vector const& values, Value fallback) { auto& vm = global_object.vm(); // 1. Assert: Type(options) is Object. // 2. Assert: Each element of types is Boolean, String, or Number. // 3. Let value be ? Get(options, property). auto value = options.get(property); if (vm.exception()) return {}; // 4. If value is undefined, return fallback. if (value.is_undefined()) return fallback; OptionType type; // 5. If types contains Type(value), then if (auto value_type = to_option_type(value); value_type.has_value() && types.contains_slow(*value_type)) { // a. Let type be Type(value). type = *value_type; } // 6. Else, else { // a. Let type be the last element of types. type = types.last(); } // 7. If type is Boolean, then if (type == OptionType::Boolean) { // a. Set value to ! ToBoolean(value). value = Value(value.to_boolean()); } // 8. Else if type is Number, then else if (type == OptionType::Number) { // a. Set value to ? ToNumber(value). value = value.to_number(global_object); if (vm.exception()) return {}; // b. If value is NaN, throw a RangeError exception. if (value.is_nan()) { vm.throw_exception(global_object, ErrorType::OptionIsNotValidValue, vm.names.NaN.as_string(), property); return {}; } } // 9. Else, else { // a. Set value to ? ToString(value). value = value.to_primitive_string(global_object); if (vm.exception()) return {}; } // 10. If values is not empty, then if (!values.is_empty()) { VERIFY(value.is_string()); // a. If values does not contain value, throw a RangeError exception. if (!values.contains_slow(value.as_string().string())) { vm.throw_exception(global_object, ErrorType::OptionIsNotValidValue, value.as_string().string(), property); return {}; } } // 11. Return value. return value; } // 13.6 ToTemporalOverflow ( normalizedOptions ), https://tc39.es/proposal-temporal/#sec-temporal-totemporaloverflow Optional to_temporal_overflow(GlobalObject& global_object, Object& normalized_options) { auto& vm = global_object.vm(); // 1. Return ? GetOption(normalizedOptions, "overflow", « String », « "constrain", "reject" », "constrain"). auto option = get_option(global_object, normalized_options, "overflow", { OptionType::String }, { "constrain"sv, "reject"sv }, js_string(vm, "constrain")); if (vm.exception()) return {}; VERIFY(option.is_string()); return option.as_string().string(); } // 13.8 ToTemporalRoundingMode ( normalizedOptions, fallback ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalroundingmode Optional to_temporal_rounding_mode(GlobalObject& global_object, Object& normalized_options, String const& fallback) { auto& vm = global_object.vm(); auto option = get_option(global_object, normalized_options, "roundingMode", { OptionType::String }, { "ceil"sv, "floor"sv, "trunc"sv, "halfExpand"sv }, js_string(vm, fallback)); if (vm.exception()) return {}; VERIFY(option.is_string()); return option.as_string().string(); } // 13.14 ToTemporalRoundingIncrement ( normalizedOptions, dividend, inclusive ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalroundingincrement u64 to_temporal_rounding_increment(GlobalObject& global_object, Object& normalized_options, Optional dividend, bool inclusive) { auto& vm = global_object.vm(); double maximum; // 1. If dividend is undefined, then if (!dividend.has_value()) { // a. Let maximum be +∞. maximum = INFINITY; } // 2. Else if inclusive is true, then else if (inclusive) { // a. Let maximum be dividend. maximum = *dividend; } // 3. Else if dividend is more than 1, then else if (*dividend > 1) { // a. Let maximum be dividend − 1. maximum = *dividend - 1; } // 4. Else, else { // a. Let maximum be 1. maximum = 1; } // 5. Let increment be ? GetOption(normalizedOptions, "roundingIncrement", « Number », empty, 1). auto increment_value = get_option(global_object, normalized_options, "roundingIncrement", { OptionType::Number }, {}, Value(1)); if (vm.exception()) return {}; VERIFY(increment_value.is_number()); auto increment = increment_value.as_double(); // 6. If increment < 1 or increment > maximum, throw a RangeError exception. if (increment < 1 || increment > maximum) { vm.throw_exception(global_object, ErrorType::OptionIsNotValidValue, increment, "roundingIncrement"); return {}; } // 7. Set increment to floor(ℝ(increment)). auto floored_increment = static_cast(increment); // 8. If dividend is not undefined and dividend modulo increment is not zero, then if (dividend.has_value() && static_cast(*dividend) % floored_increment != 0) { // a. Throw a RangeError exception. vm.throw_exception(global_object, ErrorType::OptionIsNotValidValue, increment, "roundingIncrement"); return {}; } // 9. Return increment. return floored_increment; } // https://tc39.es/proposal-temporal/#table-temporal-singular-and-plural-units static HashMap plural_to_singular_units = { { "years"sv, "year"sv }, { "months"sv, "month"sv }, { "weeks"sv, "week"sv }, { "days"sv, "day"sv }, { "hours"sv, "hour"sv }, { "minutes"sv, "minute"sv }, { "seconds"sv, "second"sv }, { "milliseconds"sv, "millisecond"sv }, { "microseconds"sv, "microsecond"sv }, { "nanoseconds"sv, "nanosecond"sv } }; // 13.18 ToSmallestTemporalUnit ( normalizedOptions, disallowedUnits, fallback ), https://tc39.es/proposal-temporal/#sec-temporal-tosmallesttemporalunit Optional to_smallest_temporal_unit(GlobalObject& global_object, Object& normalized_options, Vector const& disallowed_units, Optional fallback) { auto& vm = global_object.vm(); // 1. Assert: disallowedUnits does not contain fallback. // 2. Let smallestUnit be ? GetOption(normalizedOptions, "smallestUnit", « String », « "year", "years", "month", "months", "week", "weeks", "day", "days", "hour", "hours", "minute", "minutes", "second", "seconds", "millisecond", "milliseconds", "microsecond", "microseconds", "nanosecond", "nanoseconds" », fallback). auto smallest_unit_value = get_option(global_object, normalized_options, "smallestUnit"sv, { OptionType::String }, { "year"sv, "years"sv, "month"sv, "months"sv, "week"sv, "weeks"sv, "day"sv, "days"sv, "hour"sv, "hours"sv, "minute"sv, "minutes"sv, "second"sv, "seconds"sv, "millisecond"sv, "milliseconds"sv, "microsecond"sv, "microseconds"sv, "nanosecond"sv, "nanoseconds"sv }, fallback.has_value() ? js_string(vm, *fallback) : js_undefined()); if (vm.exception()) return {}; // OPTIMIZATION: We skip the following string-only checks for the fallback to tidy up the code a bit if (smallest_unit_value.is_undefined()) return {}; VERIFY(smallest_unit_value.is_string()); auto smallest_unit = smallest_unit_value.as_string().string(); // 3. If smallestUnit is in the Plural column of Table 12, then if (auto singular_unit = plural_to_singular_units.get(smallest_unit); singular_unit.has_value()) { // a. Set smallestUnit to the corresponding Singular value of the same row. smallest_unit = singular_unit.value(); } // 4. If disallowedUnits contains smallestUnit, then if (disallowed_units.contains_slow(smallest_unit)) { // a. Throw a RangeError exception. vm.throw_exception(global_object, ErrorType::OptionIsNotValidValue, smallest_unit, "smallestUnit"); return {}; } // 5. Return smallestUnit. return smallest_unit; } // 13.29 ConstrainToRange ( x, minimum, maximum ), https://tc39.es/proposal-temporal/#sec-temporal-constraintorange double constrain_to_range(double x, double minimum, double maximum) { return min(max(x, minimum), maximum); } // 13.32 RoundNumberToIncrement ( x, increment, roundingMode ), https://tc39.es/proposal-temporal/#sec-temporal-roundnumbertoincrement BigInt* round_number_to_increment(GlobalObject& global_object, BigInt const& x, u64 increment, String const& rounding_mode) { auto& heap = global_object.heap(); // 1. Assert: x and increment are mathematical values. // 2. Assert: roundingMode is "ceil", "floor", "trunc", or "halfExpand". VERIFY(rounding_mode == "ceil" || rounding_mode == "floor" || rounding_mode == "trunc" || rounding_mode == "halfExpand"); // OPTIMIZATION: If the increment is 1 the number is always rounded if (increment == 1) return js_bigint(heap, x.big_integer()); auto increment_big_int = Crypto::UnsignedBigInteger::create_from(increment); // 3. Let quotient be x / increment. auto division_result = x.big_integer().divided_by(increment_big_int); // OPTIMIZATION: If theres no remainder there number is already rounded if (division_result.remainder == Crypto::UnsignedBigInteger { 0 }) return js_bigint(heap, x.big_integer()); Crypto::SignedBigInteger rounded = move(division_result.quotient); // 4. If roundingMode is "ceil", then if (rounding_mode == "ceil") { // a. Let rounded be −floor(−quotient). if (!division_result.remainder.is_negative()) rounded = rounded.plus(Crypto::UnsignedBigInteger { 1 }); } // 5. Else if roundingMode is "floor", then else if (rounding_mode == "floor") { // a. Let rounded be floor(quotient). if (division_result.remainder.is_negative()) rounded = rounded.minus(Crypto::UnsignedBigInteger { 1 }); } // 6. Else if roundingMode is "trunc", then else if (rounding_mode == "trunc") { // a. Let rounded be the integral part of quotient, removing any fractional digits. // NOTE: This is a no-op } // 7. Else, else { // a. Let rounded be ! RoundHalfAwayFromZero(quotient). if (division_result.remainder.multiplied_by(Crypto::UnsignedBigInteger { 2 }).unsigned_value() >= increment_big_int) { if (division_result.remainder.is_negative()) rounded = rounded.minus(Crypto::UnsignedBigInteger { 1 }); else rounded = rounded.plus(Crypto::UnsignedBigInteger { 1 }); } } // 8. Return rounded × increment. return js_bigint(heap, rounded.multiplied_by(increment_big_int)); } // 13.34 ParseISODateTime ( isoString ), https://tc39.es/proposal-temporal/#sec-temporal-parseisodatetime Optional parse_iso_date_time(GlobalObject& global_object, [[maybe_unused]] String const& iso_string) { auto& vm = global_object.vm(); // 1. Assert: Type(isoString) is String. // 2. Let year, month, day, hour, minute, second, fraction, and calendar be the parts of isoString produced respectively by the DateYear, DateMonth, DateDay, TimeHour, TimeMinute, TimeSecond, TimeFractionalPart, and CalendarName productions, or undefined if not present. Optional year_part; Optional month_part; Optional day_part; Optional hour_part; Optional minute_part; Optional second_part; Optional fraction_part; Optional calendar_part; TODO(); // 3. Let year be the part of isoString produced by the DateYear production. // 4. If the first code unit of year is 0x2212 (MINUS SIGN), replace it with the code unit 0x002D (HYPHEN-MINUS). String normalized_year; if (year_part.has_value() && year_part->starts_with("\xE2\x88\x92"sv)) normalized_year = String::formatted("-{}", year_part->substring_view(3)); else normalized_year = year_part.value_or(""); // 5. Set year to ! ToIntegerOrInfinity(year). i32 year = Value(js_string(vm, normalized_year)).to_integer_or_infinity(global_object); u8 month; // 6. If month is undefined, then if (!month_part.has_value()) { // a. Set month to 1. month = 1; } // 7. Else, else { // a. Set month to ! ToIntegerOrInfinity(month). month = *month_part->to_uint(); } u8 day; // 8. If day is undefined, then if (!day_part.has_value()) { // a. Set day to 1. day = 1; } // 9. Else, else { // a. Set day to ! ToIntegerOrInfinity(day). day = *day_part->to_uint(); } // 10. Set hour to ! ToIntegerOrInfinity(hour). u8 hour = hour_part->to_uint().value_or(0); // 11. Set minute to ! ToIntegerOrInfinity(minute). u8 minute = minute_part->to_uint().value_or(0); // 12. Set second to ! ToIntegerOrInfinity(second). u8 second = second_part->to_uint().value_or(0); // 13. If second is 60, then if (second == 60) { // a. Set second to 59. second = 59; } u16 millisecond; u16 microsecond; u16 nanosecond; // 14. If fraction is not undefined, then if (fraction_part.has_value()) { // a. Set fraction to the string-concatenation of the previous value of fraction and the string "000000000". auto fraction = String::formatted("{}000000000", *fraction_part); // b. Let millisecond be the String value equal to the substring of fraction from 0 to 3. // c. Set millisecond to ! ToIntegerOrInfinity(millisecond). millisecond = *fraction.substring(0, 3).to_uint(); // d. Let microsecond be the String value equal to the substring of fraction from 3 to 6. // e. Set microsecond to ! ToIntegerOrInfinity(microsecond). microsecond = *fraction.substring(3, 3).to_uint(); // f. Let nanosecond be the String value equal to the substring of fraction from 6 to 9. // g. Set nanosecond to ! ToIntegerOrInfinity(nanosecond). nanosecond = *fraction.substring(6, 3).to_uint(); } // 15. Else, else { // a. Let millisecond be 0. millisecond = 0; // b. Let microsecond be 0. microsecond = 0; // c. Let nanosecond be 0. nanosecond = 0; } // 16. If ! IsValidISODate(year, month, day) is false, throw a RangeError exception. if (!is_valid_iso_date(year, month, day)) { vm.throw_exception(global_object, ErrorType::TemporalInvalidISODate); return {}; } // 17. If ! IsValidTime(hour, minute, second, millisecond, microsecond, nanosecond) is false, throw a RangeError exception. if (!is_valid_time(hour, minute, second, millisecond, microsecond, nanosecond)) { vm.throw_exception(global_object, ErrorType::TemporalInvalidTime); return {}; } // 18. Return the new Record { [[Year]]: year, [[Month]]: month, [[Day]]: day, [[Hour]]: hour, [[Minute]]: minute, [[Second]]: second, [[Millisecond]]: millisecond, [[Microsecond]]: microsecond, [[Nanosecond]]: nanosecond, [[Calendar]]: calendar }. return ISODateTime { .year = year, .month = month, .day = day, .hour = hour, .minute = minute, .second = second, .millisecond = millisecond, .microsecond = microsecond, .nanosecond = nanosecond, .calendar = calendar_part.has_value() ? *calendar_part : Optional() }; } // 13.35 ParseTemporalInstantString ( isoString ), https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalinstantstring Optional parse_temporal_instant_string(GlobalObject& global_object, String const& iso_string) { auto& vm = global_object.vm(); // 1. Assert: Type(isoString) is String. // 2. If isoString does not satisfy the syntax of a TemporalInstantString (see 13.33), then // a. Throw a RangeError exception. // TODO // 3. Let result be ! ParseISODateTime(isoString). auto result = parse_iso_date_time(global_object, iso_string); // 4. Let timeZoneResult be ? ParseTemporalTimeZoneString(isoString). auto time_zone_result = parse_temporal_time_zone_string(global_object, iso_string); if (vm.exception()) return {}; // 5. Assert: timeZoneResult.[[OffsetString]] is not undefined. VERIFY(time_zone_result->offset.has_value()); // 6. Return the new Record { [[Year]]: result.[[Year]], [[Month]]: result.[[Month]], [[Day]]: result.[[Day]], [[Hour]]: result.[[Hour]], [[Minute]]: result.[[Minute]], [[Second]]: result.[[Second]], [[Millisecond]]: result.[[Millisecond]], [[Microsecond]]: result.[[Microsecond]], [[Nanosecond]]: result.[[Nanosecond]], [[TimeZoneOffsetString]]: timeZoneResult.[[OffsetString]] }. return TemporalInstant { .year = result->year, .month = result->month, .day = result->day, .hour = result->hour, .minute = result->minute, .second = result->second, .millisecond = result->millisecond, .microsecond = result->microsecond, .nanosecond = result->nanosecond, .time_zone_offset = move(time_zone_result->offset) }; } // 13.37 ParseTemporalCalendarString ( isoString ), https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalcalendarstring Optional parse_temporal_calendar_string([[maybe_unused]] GlobalObject& global_object, [[maybe_unused]] String const& iso_string) { // 1. Assert: Type(isoString) is String. // 2. If isoString does not satisfy the syntax of a TemporalCalendarString (see 13.33), then // a. Throw a RangeError exception. // 3. Let id be the part of isoString produced by the CalendarName production, or undefined if not present. Optional id_part; TODO(); // 4. If id is undefined, then if (!id_part.has_value()) { // a. Return "iso8601". return "iso8601"; } // 5. Return id. return id_part.value(); } // 13.38 ParseTemporalDateString ( isoString ), https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaldatestring Optional parse_temporal_date_string(GlobalObject& global_object, String const& iso_string) { auto& vm = global_object.vm(); // 1. Assert: Type(isoString) is String. // 2. If isoString does not satisfy the syntax of a TemporalDateString (see 13.33), then // a. Throw a RangeError exception. // TODO // 3. Let result be ? ParseISODateTime(isoString). auto result = parse_iso_date_time(global_object, iso_string); if (vm.exception()) return {}; // 4. Return the new Record { [[Year]]: result.[[Year]], [[Month]]: result.[[Month]], [[Day]]: result.[[Day]], [[Calendar]]: result.[[Calendar]] }. return TemporalDate { .year = result->year, .month = result->month, .day = result->day, .calendar = move(result->calendar) }; } // 13.40 ParseTemporalDurationString ( isoString ), https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaldurationstring Optional parse_temporal_duration_string(GlobalObject& global_object, String const& iso_string) { (void)global_object; (void)iso_string; TODO(); } // 13.43 ParseTemporalTimeZoneString ( isoString ), https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaltimezonestring Optional parse_temporal_time_zone_string(GlobalObject& global_object, [[maybe_unused]] String const& iso_string) { auto& vm = global_object.vm(); // 1. Assert: Type(isoString) is String. // 2. If isoString does not satisfy the syntax of a TemporalTimeZoneString (see 13.33), then // a. Throw a RangeError exception. // 3. Let z, sign, hours, minutes, seconds, fraction and name be the parts of isoString produced respectively by the UTCDesignator, TimeZoneUTCOffsetSign, TimeZoneUTCOffsetHour, TimeZoneUTCOffsetMinute, TimeZoneUTCOffsetSecond, TimeZoneUTCOffsetFraction, and TimeZoneIANAName productions, or undefined if not present. Optional z_part; Optional sign_part; Optional hours_part; Optional minutes_part; Optional seconds_part; Optional fraction_part; Optional name_part; TODO(); // 4. If z is not undefined, then if (z_part.has_value()) { // a. Return the new Record: { [[Z]]: "Z", [[OffsetString]]: "+00:00", [[Name]]: undefined }. return TemporalTimeZone { .z = true, .offset = "+00:00", .name = {} }; } Optional offset; // 5. If hours is undefined, then if (!hours_part.has_value()) { // a. Let offsetString be undefined. // NOTE: No-op. } // 6. Else, else { // a. Assert: sign is not undefined. VERIFY(sign_part.has_value()); // b. Set hours to ! ToIntegerOrInfinity(hours). u8 hours = Value(js_string(vm, *hours_part)).to_integer_or_infinity(global_object); u8 sign; // c. If sign is the code unit 0x002D (HYPHEN-MINUS) or the code unit 0x2212 (MINUS SIGN), then if (sign_part->is_one_of("-", "\u2212")) { // i. Set sign to −1. sign = -1; } // d. Else, else { // i. Set sign to 1. sign = 1; } // e. Set minutes to ! ToIntegerOrInfinity(minutes). u8 minutes = Value(js_string(vm, minutes_part.value_or(""sv))).to_integer_or_infinity(global_object); // f. Set seconds to ! ToIntegerOrInfinity(seconds). u8 seconds = Value(js_string(vm, seconds_part.value_or(""sv))).to_integer_or_infinity(global_object); i32 nanoseconds; // g. If fraction is not undefined, then if (fraction_part.has_value()) { // i. Set fraction to the string-concatenation of the previous value of fraction and the string "000000000". auto fraction = String::formatted("{}000000000", *fraction_part); // ii. Let nanoseconds be the String value equal to the substring of fraction from 0 to 9. // iii. Set nanoseconds to ! ToIntegerOrInfinity(nanoseconds). nanoseconds = Value(js_string(vm, fraction.substring(0, 9))).to_integer_or_infinity(global_object); } // h. Else, else { // i. Let nanoseconds be 0. nanoseconds = 0; } // i. Let offsetNanoseconds be sign × (((hours × 60 + minutes) × 60 + seconds) × 10^9 + nanoseconds). auto offset_nanoseconds = sign * (((hours * 60 + minutes) * 60 + seconds) * 1000000000 + nanoseconds); // j. Let offsetString be ! FormatTimeZoneOffsetString(offsetNanoseconds). offset = format_time_zone_offset_string(offset_nanoseconds); } Optional name; // 7. If name is not undefined, then if (name_part.has_value()) { // a. If ! IsValidTimeZoneName(name) is false, throw a RangeError exception. if (!is_valid_time_zone_name(*name_part)) { vm.throw_exception(global_object, ErrorType::TemporalInvalidTimeZoneName); return {}; } // b. Set name to ! CanonicalizeTimeZoneName(name). name = canonicalize_time_zone_name(*name_part); } // 8. Return the new Record: { [[Z]]: undefined, [[OffsetString]]: offsetString, [[Name]]: name }. return TemporalTimeZone { .z = false, .offset = offset, .name = name }; } // 13.45 ToPositiveIntegerOrInfinity ( argument ), https://tc39.es/proposal-temporal/#sec-temporal-topositiveintegerorinfinity double to_positive_integer_or_infinity(GlobalObject& global_object, Value argument) { auto& vm = global_object.vm(); // 1. Let integer be ? ToIntegerOrInfinity(argument). auto integer = argument.to_integer_or_infinity(global_object); if (vm.exception()) return {}; // 2. If integer is -∞𝔽, then if (Value(integer).is_negative_infinity()) { // a. Throw a RangeError exception. vm.throw_exception(global_object, ErrorType::TemporalPropertyMustBePositiveInteger); return {}; } // 3. If integer ≤ 0, then if (integer <= 0) { // a. Throw a RangeError exception. vm.throw_exception(global_object, ErrorType::TemporalPropertyMustBePositiveInteger); return {}; } // 4. Return integer. return integer; } // 13.47 PrepareTemporalFields ( fields, fieldNames, requiredFields ), https://tc39.es/proposal-temporal/#sec-temporal-preparetemporalfields Object* prepare_temporal_fields(GlobalObject& global_object, Object& fields, Vector const& field_names, Vector const& required_fields) { auto& vm = global_object.vm(); // 1. Assert: Type(fields) is Object. // 2. Let result be ! OrdinaryObjectCreate(%Object.prototype%). auto* result = Object::create(global_object, global_object.object_prototype()); VERIFY(result); // 3. For each value property of fieldNames, do for (auto& property : field_names) { // a. Let value be ? Get(fields, property). auto value = fields.get(property); if (vm.exception()) return {}; // b. If value is undefined, then if (value.is_undefined()) { // i. If requiredFields contains property, then if (required_fields.contains_slow(property)) { // 1. Throw a TypeError exception. vm.throw_exception(global_object, ErrorType::TemporalMissingRequiredProperty, property); return {}; } // ii. If property is in the Property column of Table 13, then // NOTE: The other properties in the table are automatically handled as their default value is undefined if (property.is_one_of("hour", "minute", "second", "millisecond", "microsecond", "nanosecond")) { // 1. Set value to the corresponding Default value of the same row. value = Value(0); } } // c. Else, else { // i. If property is in the Property column of Table 13 and there is a Conversion value in the same row, then // 1. Let Conversion represent the abstract operation named by the Conversion value of the same row. // 2. Set value to ? Conversion(value). if (property.is_one_of("year", "hour", "minute", "second", "millisecond", "microsecond", "nanosecond", "eraYear")) { value = Value(value.to_integer_or_infinity(global_object)); if (vm.exception()) return {}; } else if (property.is_one_of("month", "day")) { value = Value(to_positive_integer_or_infinity(global_object, value)); if (vm.exception()) return {}; } else if (property.is_one_of("monthCode", "offset", "era")) { value = value.to_primitive_string(global_object); if (vm.exception()) return {}; } } // d. Perform ! CreateDataPropertyOrThrow(result, property, value). result->create_data_property_or_throw(property, value); } // 4. Return result. return result; } }