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

LibJS: Implement Intl.Locale.prototype.language

This commit is contained in:
Timothy Flynn 2021-09-02 08:19:29 -04:00 committed by Linus Groh
parent bdf36575c8
commit c3b6f43641
3 changed files with 42 additions and 0 deletions

View file

@ -53,6 +53,7 @@ void LocalePrototype::initialize(GlobalObject& global_object)
define_native_accessor(vm.names.hourCycle, hour_cycle, {}, Attribute::Configurable);
define_native_accessor(vm.names.numberingSystem, numbering_system, {}, Attribute::Configurable);
define_native_accessor(vm.names.numeric, numeric, {}, Attribute::Configurable);
define_native_accessor(vm.names.language, language, {}, Attribute::Configurable);
}
// 14.3.5 Intl.Locale.prototype.toString ( ), https://tc39.es/ecma402/#sec-Intl.Locale.prototype.toString
@ -123,4 +124,23 @@ JS_DEFINE_NATIVE_GETTER(LocalePrototype::numeric)
return Value(locale_object->numeric());
}
// 14.3.13 get Intl.Locale.prototype.language, https://tc39.es/ecma402/#sec-Intl.Locale.prototype.language
JS_DEFINE_NATIVE_GETTER(LocalePrototype::language)
{
// 1. Let loc be the this value.
// 2. Perform ? RequireInternalSlot(loc, [[InitializedLocale]]).
auto* locale_object = typed_this(global_object);
if (!locale_object)
return {};
// 3. Let locale be loc.[[Locale]].
auto locale = Unicode::parse_unicode_locale_id(locale_object->locale());
// 4. Assert: locale matches the unicode_locale_id production.
VERIFY(locale.has_value());
// 5. Return the substring of locale corresponding to the unicode_language_subtag production of the unicode_language_id.
return js_string(vm, *locale->language_id.language);
}
}

View file

@ -28,6 +28,7 @@ private:
JS_DECLARE_NATIVE_GETTER(hour_cycle);
JS_DECLARE_NATIVE_GETTER(numbering_system);
JS_DECLARE_NATIVE_GETTER(numeric);
JS_DECLARE_NATIVE_GETTER(language);
};
}