summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Intl
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-09-02 08:23:03 -0400
committerLinus Groh <mail@linusgroh.de>2021-09-02 17:56:42 +0100
commit349fd06b862a66cc53086e9d3298f4101fd8ece2 (patch)
tree08de8a5ec357c0a718c5b2397c03c9ca3c9c0531 /Userland/Libraries/LibJS/Runtime/Intl
parentc3b6f436417c781acf22697176222690d7ea06b0 (diff)
downloadserenity-349fd06b862a66cc53086e9d3298f4101fd8ece2.zip
LibJS: Implement Intl.Locale.prototype.script
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Intl')
-rw-r--r--Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.cpp24
-rw-r--r--Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.h1
2 files changed, 25 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.cpp b/Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.cpp
index 0d9de229f0..3c4037d8f6 100644
--- a/Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.cpp
+++ b/Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.cpp
@@ -54,6 +54,7 @@ void LocalePrototype::initialize(GlobalObject& global_object)
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);
+ define_native_accessor(vm.names.script, script, {}, Attribute::Configurable);
}
// 14.3.5 Intl.Locale.prototype.toString ( ), https://tc39.es/ecma402/#sec-Intl.Locale.prototype.toString
@@ -143,4 +144,27 @@ JS_DEFINE_NATIVE_GETTER(LocalePrototype::language)
return js_string(vm, *locale->language_id.language);
}
+// 14.3.14 get Intl.Locale.prototype.script, https://tc39.es/ecma402/#sec-Intl.Locale.prototype.script
+JS_DEFINE_NATIVE_GETTER(LocalePrototype::script)
+{
+ // 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. If the unicode_language_id production of locale does not contain the ["-" unicode_script_subtag] sequence, return undefined.
+ if (!locale->language_id.script.has_value())
+ return js_undefined();
+
+ // 6. Return the substring of locale corresponding to the unicode_script_subtag production of the unicode_language_id.
+ return js_string(vm, *locale->language_id.script);
+}
+
}
diff --git a/Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.h b/Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.h
index 8827c8cda9..c622f751b6 100644
--- a/Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.h
+++ b/Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.h
@@ -29,6 +29,7 @@ private:
JS_DECLARE_NATIVE_GETTER(numbering_system);
JS_DECLARE_NATIVE_GETTER(numeric);
JS_DECLARE_NATIVE_GETTER(language);
+ JS_DECLARE_NATIVE_GETTER(script);
};
}