mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:37:46 +00:00
LibJS: Implement Temporal.PlainDate.prototype.monthCode
This commit is contained in:
parent
9d9ba29cae
commit
d9414e465a
5 changed files with 54 additions and 0 deletions
|
@ -161,6 +161,27 @@ double calendar_month(GlobalObject& global_object, Object& calendar, Object& dat
|
||||||
return to_positive_integer_or_infinity(global_object, result);
|
return to_positive_integer_or_infinity(global_object, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 12.1.11 CalendarMonthCode ( calendar, dateLike ), https://tc39.es/proposal-temporal/#sec-temporal-calendarmonthcode
|
||||||
|
String calendar_month_code(GlobalObject& global_object, Object& calendar, Object& date_like)
|
||||||
|
{
|
||||||
|
auto& vm = global_object.vm();
|
||||||
|
// 1. Assert: Type(calendar) is Object.
|
||||||
|
|
||||||
|
// 2. Let result be ? Invoke(calendar, "monthCode", « dateLike »).
|
||||||
|
auto result = calendar.invoke(vm.names.monthCode, &date_like);
|
||||||
|
if (vm.exception())
|
||||||
|
return {};
|
||||||
|
|
||||||
|
// 3. If result is undefined, throw a RangeError exception.
|
||||||
|
if (result.is_undefined()) {
|
||||||
|
vm.throw_exception<RangeError>(global_object, ErrorType::TemporalInvalidCalendarFunctionResult, vm.names.monthCode.as_string());
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. Return ? ToString(result).
|
||||||
|
return result.to_string(global_object);
|
||||||
|
}
|
||||||
|
|
||||||
// 12.1.21 ToTemporalCalendar ( temporalCalendarLike ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendar
|
// 12.1.21 ToTemporalCalendar ( temporalCalendarLike ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalcalendar
|
||||||
Object* to_temporal_calendar(GlobalObject& global_object, Value temporal_calendar_like)
|
Object* to_temporal_calendar(GlobalObject& global_object, Value temporal_calendar_like)
|
||||||
{
|
{
|
||||||
|
|
|
@ -36,6 +36,7 @@ Calendar* get_iso8601_calendar(GlobalObject&);
|
||||||
Vector<String> calendar_fields(GlobalObject&, Object& calendar, Vector<StringView> const& field_names);
|
Vector<String> calendar_fields(GlobalObject&, Object& calendar, Vector<StringView> const& field_names);
|
||||||
double calendar_year(GlobalObject&, Object& calendar, Object& date_like);
|
double calendar_year(GlobalObject&, Object& calendar, Object& date_like);
|
||||||
double calendar_month(GlobalObject&, Object& calendar, Object& date_like);
|
double calendar_month(GlobalObject&, Object& calendar, Object& date_like);
|
||||||
|
String calendar_month_code(GlobalObject&, Object& calendar, Object& date_like);
|
||||||
Object* to_temporal_calendar(GlobalObject&, Value);
|
Object* to_temporal_calendar(GlobalObject&, Value);
|
||||||
Object* to_temporal_calendar_with_iso_default(GlobalObject&, Value);
|
Object* to_temporal_calendar_with_iso_default(GlobalObject&, Value);
|
||||||
Object* get_temporal_calendar_with_iso_default(GlobalObject&, Object&);
|
Object* get_temporal_calendar_with_iso_default(GlobalObject&, Object&);
|
||||||
|
|
|
@ -29,6 +29,7 @@ void PlainDatePrototype::initialize(GlobalObject& global_object)
|
||||||
define_native_accessor(vm.names.calendar, calendar_getter, {}, Attribute::Configurable);
|
define_native_accessor(vm.names.calendar, calendar_getter, {}, Attribute::Configurable);
|
||||||
define_native_accessor(vm.names.year, year_getter, {}, Attribute::Configurable);
|
define_native_accessor(vm.names.year, year_getter, {}, Attribute::Configurable);
|
||||||
define_native_accessor(vm.names.month, month_getter, {}, Attribute::Configurable);
|
define_native_accessor(vm.names.month, month_getter, {}, Attribute::Configurable);
|
||||||
|
define_native_accessor(vm.names.monthCode, month_code_getter, {}, Attribute::Configurable);
|
||||||
|
|
||||||
u8 attr = Attribute::Writable | Attribute::Configurable;
|
u8 attr = Attribute::Writable | Attribute::Configurable;
|
||||||
define_native_function(vm.names.withCalendar, with_calendar, 1, attr);
|
define_native_function(vm.names.withCalendar, with_calendar, 1, attr);
|
||||||
|
@ -94,6 +95,22 @@ JS_DEFINE_NATIVE_FUNCTION(PlainDatePrototype::month_getter)
|
||||||
return Value(calendar_month(global_object, calendar, *temporal_date));
|
return Value(calendar_month(global_object, calendar, *temporal_date));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 3.3.6 get Temporal.PlainDate.prototype.monthCode, https://tc39.es/proposal-temporal/#sec-get-temporal.plaindate.prototype.monthCode
|
||||||
|
JS_DEFINE_NATIVE_FUNCTION(PlainDatePrototype::month_code_getter)
|
||||||
|
{
|
||||||
|
// 1. Let temporalDate be the this value.
|
||||||
|
// 2. Perform ? RequireInternalSlot(temporalDate, [[InitializedTemporalDate]]).
|
||||||
|
auto* temporal_date = typed_this(global_object);
|
||||||
|
if (vm.exception())
|
||||||
|
return {};
|
||||||
|
|
||||||
|
// 3. Let calendar be temporalDate.[[Calendar]].
|
||||||
|
auto& calendar = temporal_date->calendar();
|
||||||
|
|
||||||
|
// 4. Return ? CalendarMonthCode(calendar, temporalDate).
|
||||||
|
return js_string(vm, calendar_month_code(global_object, calendar, *temporal_date));
|
||||||
|
}
|
||||||
|
|
||||||
// 3.3.22 Temporal.PlainDate.prototype.withCalendar ( calendar ), https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.withcalendar
|
// 3.3.22 Temporal.PlainDate.prototype.withCalendar ( calendar ), https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.withcalendar
|
||||||
JS_DEFINE_NATIVE_FUNCTION(PlainDatePrototype::with_calendar)
|
JS_DEFINE_NATIVE_FUNCTION(PlainDatePrototype::with_calendar)
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,6 +22,7 @@ private:
|
||||||
JS_DECLARE_NATIVE_FUNCTION(calendar_getter);
|
JS_DECLARE_NATIVE_FUNCTION(calendar_getter);
|
||||||
JS_DECLARE_NATIVE_FUNCTION(year_getter);
|
JS_DECLARE_NATIVE_FUNCTION(year_getter);
|
||||||
JS_DECLARE_NATIVE_FUNCTION(month_getter);
|
JS_DECLARE_NATIVE_FUNCTION(month_getter);
|
||||||
|
JS_DECLARE_NATIVE_FUNCTION(month_code_getter);
|
||||||
|
|
||||||
JS_DECLARE_NATIVE_FUNCTION(with_calendar);
|
JS_DECLARE_NATIVE_FUNCTION(with_calendar);
|
||||||
JS_DECLARE_NATIVE_FUNCTION(equals);
|
JS_DECLARE_NATIVE_FUNCTION(equals);
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
describe("correct behavior", () => {
|
||||||
|
test("basic functionality", () => {
|
||||||
|
const date = new Temporal.PlainDate(2021, 7, 23);
|
||||||
|
expect(date.monthCode).toBe("M07");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test("errors", () => {
|
||||||
|
test("this value must be a Temporal.PlainDate object", () => {
|
||||||
|
expect(() => {
|
||||||
|
Reflect.get(Temporal.PlainDate.prototype, "monthCode", "foo");
|
||||||
|
}).toThrowWithMessage(TypeError, "Not a Temporal.PlainDate");
|
||||||
|
});
|
||||||
|
});
|
Loading…
Add table
Add a link
Reference in a new issue