1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

LibJS: Do not fully qualify references to CanonicalizeUnicodeLocaleId

This might've been needed at some point to disambiguate between another
function of the same name that is in LibLocale. But now that it takes a
VM parameter, it is for sure clear to the compiler what is being called.
This commit is contained in:
Timothy Flynn 2023-01-19 11:40:17 -05:00 committed by Linus Groh
parent 1e6e719592
commit 2f1184ccdb
3 changed files with 5 additions and 5 deletions

View file

@ -250,7 +250,7 @@ ThrowCompletionOr<Vector<DeprecatedString>> canonicalize_locale_list(VM& vm, Val
// vi. Let canonicalizedTag be ! CanonicalizeUnicodeLocaleId(tag).
// NOTE: We TRY this operation only to propagate OOM errors.
auto canonicalized_tag = TRY(JS::Intl::canonicalize_unicode_locale_id(vm, *locale_id));
auto canonicalized_tag = TRY(canonicalize_unicode_locale_id(vm, *locale_id));
// vii. If canonicalizedTag is not an element of seen, append canonicalizedTag as the last element of seen.
if (!seen.contains_slow(canonicalized_tag))
@ -353,7 +353,7 @@ ThrowCompletionOr<DeprecatedString> insert_unicode_extension_and_canonicalize(VM
// of that string. LibUnicode gives us the parsed locale in a structure, so we can mutate that
// structure directly.
TRY_OR_THROW_OOM(vm, locale.extensions.try_append(move(extension)));
return TRY(JS::Intl::canonicalize_unicode_locale_id(vm, locale));
return TRY(canonicalize_unicode_locale_id(vm, locale));
}
template<typename T>