1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:47:45 +00:00

LibJS: Port create_temporal_calendar() to String

This commit is contained in:
Linus Groh 2023-01-26 15:20:00 +00:00
parent 0f5f9acc9c
commit a101b15ad0
3 changed files with 11 additions and 11 deletions

View file

@ -22,13 +22,13 @@ class Calendar final : public Object {
public:
virtual ~Calendar() override = default;
[[nodiscard]] DeprecatedString const& identifier() const { return m_identifier; }
[[nodiscard]] String const& identifier() const { return m_identifier; }
private:
Calendar(DeprecatedString identifier, Object& prototype);
Calendar(String identifier, Object& prototype);
// 12.5 Properties of Temporal.Calendar Instances, https://tc39.es/proposal-temporal/#sec-properties-of-temporal-calendar-instances
DeprecatedString m_identifier; // [[Identifier]]
String m_identifier; // [[Identifier]]
};
// 14.2 The Year-Week Record Specification Type, https://tc39.es/proposal-temporal/#sec-year-week-record-specification-type
@ -39,7 +39,7 @@ struct YearWeekRecord {
bool is_builtin_calendar(StringView identifier);
Span<StringView const> available_calendars();
ThrowCompletionOr<Calendar*> create_temporal_calendar(VM&, DeprecatedString const& identifier, FunctionObject const* new_target = nullptr);
ThrowCompletionOr<Calendar*> create_temporal_calendar(VM&, String const& identifier, FunctionObject const* new_target = nullptr);
ThrowCompletionOr<Calendar*> get_builtin_calendar(VM&, DeprecatedString const& identifier);
Calendar* get_iso8601_calendar(VM&);
ThrowCompletionOr<Vector<String>> calendar_fields(VM&, Object& calendar, Vector<StringView> const& field_names);