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

LibJS: Reorganize spec steps for Intl.PluralRules

This is an editorial change in the Intl spec:
d7c7157
This commit is contained in:
Timothy Flynn 2022-03-15 11:03:55 -04:00 committed by Andreas Kling
parent 812d3a7ef8
commit 8941d0b49e
5 changed files with 56 additions and 58 deletions

View file

@ -8,7 +8,6 @@
#include <AK/String.h>
#include <AK/StringView.h>
#include <LibJS/Runtime/Completion.h>
#include <LibJS/Runtime/Intl/NumberFormat.h>
#include <LibJS/Runtime/Object.h>
@ -34,6 +33,4 @@ private:
Type m_type { Type::Cardinal }; // [[Type]]
};
ThrowCompletionOr<PluralRules*> initialize_plural_rules(GlobalObject& global_object, PluralRules& plural_rules, Value locales_value, Value options_value);
}