summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Intl
AgeCommit message (Expand)Author
2021-10-21LibJS: Convert NativeFunction::{call,construct}() to ThrowCompletionOrLinus Groh
2021-10-21LibJS: Use implicit ThrowCompletionOr<T> constructor where possibleLinus Groh
2021-10-21LibJS: Implement IteratorClose with Completions and align to the specTimothy Flynn
2021-10-21LibJS: Convert IteratorValue AO to ThrowCompletionOrTimothy Flynn
2021-10-21LibJS: Convert IteratorStep AO to ThrowCompletionOrTimothy Flynn
2021-10-21LibJS: Convert GetIterator AO to ThrowCompletionOrTimothy Flynn
2021-10-20LibJS: Rename define_native_function => define_old_native_functionIdan Horowitz
2021-10-20LibJS: Add ThrowCompletionOr versions of the JS native function macrosIdan Horowitz
2021-10-20LibJS: Replace usages of JS_{DECLARE, DEFINE}_NATIVE_GETTERIdan Horowitz
2021-10-18LibJS: Convert PrototypeObject::typed_this_object() to ThrowCompletionOrLinus Groh
2021-10-18LibJS: Remove a bunch of forgotten exception checks after TRY_OR_DISCARDLinus Groh
2021-10-18LibJS: Convert to_length() to ThrowCompletionOrIdan Horowitz
2021-10-18LibJS: Convert to_number() to ThrowCompletionOrIdan Horowitz
2021-10-13LibJS: Convert to_object() to ThrowCompletionOrLinus Groh
2021-10-13LibJS: Convert to_primitive_string() to ThrowCompletionOrLinus Groh
2021-10-13LibJS: Convert to_string() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert has_property() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert create_data_property_or_throw() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert Object::get() to ThrowCompletionOrLinus Groh
2021-09-18LibJS: Convert ListFormat AOs to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert DisplayNames AOs to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert NumberFormat AOs to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert get_number_option() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert default_number_option() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert coerce_options_to_object() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert supported_locales() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert Intl::get_option() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert canonicalize_locale_list() to ThrowCompletionOrIdan Horowitz
2021-09-16LibJS: Convert get_options_object() to ThrowCompletionOrLinus Groh
2021-09-16LibJS: Convert ordinary_create_from_constructor<T> to ThrowCompletionOrIdan Horowitz
2021-09-13LibJS: Convert Intl.NumberFormat.prototype to be a PrototypeObjectLinus Groh
2021-09-13LibJS: Convert Intl.Locale.prototype to be a PrototypeObjectLinus Groh
2021-09-13LibJS: Convert Intl.ListFormat.prototype to be a PrototypeObjectLinus Groh
2021-09-13LibJS: Convert Intl.DisplayNames.prototype to be a PrototypeObjectLinus Groh
2021-09-12LibJS: Move locale_relevant_extension_keys to Intl.LocaleTimothy Flynn
2021-09-12LibJS: Move number_format_relevant_extension_keys to Intl.NumberFormatTimothy Flynn
2021-09-12LibJS: Move Intl.NumberFormat's AOs to its object fileTimothy Flynn
2021-09-12LibJS: Move Intl.ListFormat's AOs to its object fileTimothy Flynn
2021-09-12LibJS: Make "options" objects const references in NumberFormat's AOsTimothy Flynn
2021-09-12LibJS: Make GetNumberOption's "options" object a const referenceTimothy Flynn
2021-09-12LibJS: Store Intl.Locale's "tag" argument as a plain stringTimothy Flynn
2021-09-12LibJS: Change GetOption AO to accept the options as a concrete ObjectTimothy Flynn
2021-09-12LibJS: Sort Intl AbstractOperation declarations by spec IDTimothy Flynn
2021-09-12LibJS: Move CanonicalCodeForDisplayNames to Intl.DisplayNamesTimothy Flynn
2021-09-12LibJS: Use ErrorType::NotAnObjectOfType instead of NotATimothy Flynn
2021-09-11LibJS: Implement Intl.NumberFormat.prototype.resolvedOptionsTimothy Flynn
2021-09-11LibJS: Implement Intl.NumberFormat.supportedLocalesOfTimothy Flynn
2021-09-11LibJS: Implement the Intl.NumberFormat constructorTimothy Flynn
2021-09-11LibJS: Implement a nearly empty Intl.NumberFormat objectTimothy Flynn
2021-09-11LibJS: Handle Unicode locale extensions in the ResolveLocale operationTimothy Flynn