diff --git a/Userland/Libraries/LibJS/Runtime/Intl/PluralRules.cpp b/Userland/Libraries/LibJS/Runtime/Intl/PluralRules.cpp index acaa93697b..a8b4328b05 100644 --- a/Userland/Libraries/LibJS/Runtime/Intl/PluralRules.cpp +++ b/Userland/Libraries/LibJS/Runtime/Intl/PluralRules.cpp @@ -18,7 +18,7 @@ PluralRules::PluralRules(Object& prototype) } // 16.5.1 GetOperands ( s ), https://tc39.es/ecma402/#sec-getoperands -::Locale::PluralOperands get_operands(DeprecatedString const& string) +::Locale::PluralOperands get_operands(StringView string) { // 1.Let n be ! ToNumber(s). auto number = string.to_double(AK::TrimWhitespace::Yes).release_value(); diff --git a/Userland/Libraries/LibJS/Runtime/Intl/PluralRules.h b/Userland/Libraries/LibJS/Runtime/Intl/PluralRules.h index 3bec8c892e..d2385e2d36 100644 --- a/Userland/Libraries/LibJS/Runtime/Intl/PluralRules.h +++ b/Userland/Libraries/LibJS/Runtime/Intl/PluralRules.h @@ -1,12 +1,11 @@ /* - * Copyright (c) 2022, Tim Flynn + * Copyright (c) 2022-2023, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once -#include #include #include #include @@ -31,7 +30,7 @@ private: ::Locale::PluralForm m_type { ::Locale::PluralForm::Cardinal }; // [[Type]] }; -::Locale::PluralOperands get_operands(DeprecatedString const& string); +::Locale::PluralOperands get_operands(StringView string); ::Locale::PluralCategory plural_rule_select(StringView locale, ::Locale::PluralForm type, Value number, ::Locale::PluralOperands operands); ::Locale::PluralCategory resolve_plural(PluralRules const&, Value number); ::Locale::PluralCategory resolve_plural(NumberFormatBase const& number_format, ::Locale::PluralForm type, Value number);