LibJS: Implement Intl.Locale.prototype.textInfo property

This commit is contained in:
Timothy Flynn 2022-07-05 19:50:24 -04:00 committed by Linus Groh
commit 88a560dd84
Notes: sideshowbarker 2024-07-17 09:38:49 +09:00
6 changed files with 70 additions and 0 deletions

View file

@ -79,5 +79,6 @@ Array* collations_of_locale(GlobalObject& global_object, Locale const& locale);
Array* hour_cycles_of_locale(GlobalObject& global_object, Locale const& locale);
Array* numbering_systems_of_locale(GlobalObject& global_object, Locale const& locale);
Array* time_zones_of_locale(GlobalObject& global_object, StringView region);
StringView character_direction_of_locale(Locale const& locale);
}