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

LibJS: Move MergeLists into non-Temporal ECMA-262 amendments

This is an editorial change in the Temporal spec.

See: 4ce3db1
This commit is contained in:
Linus Groh 2022-06-18 13:39:54 +01:00
parent 0c3d2b656e
commit 7a8e6cf6c6
5 changed files with 31 additions and 29 deletions

View file

@ -74,6 +74,5 @@ u8 iso_month(Object& temporal_object);
String iso_month_code(Object& temporal_object);
u8 iso_day(Object& temporal_object);
ThrowCompletionOr<Object*> default_merge_calendar_fields(GlobalObject&, Object const& fields, Object const& additional_fields);
Vector<String> merge_lists(Vector<String> const& a, Vector<String> const& b);
}