1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 13:27:34 +00:00

LibJS: Implement Temporal.PlainMonthDay.prototype.toString()

This commit is contained in:
Linus Groh 2021-08-19 08:39:34 +01:00
parent c1c8d7861c
commit ea44f33d5b
5 changed files with 101 additions and 0 deletions

View file

@ -40,5 +40,6 @@ struct ISOMonthDay {
};
PlainMonthDay* create_temporal_month_day(GlobalObject&, u8 iso_month, u8 iso_day, Object& calendar, i32 reference_iso_year, FunctionObject* new_target = nullptr);
Optional<String> temporal_month_day_to_string(GlobalObject&, PlainMonthDay&, StringView show_calendar);
}