ecma402
ecma402 copied to clipboard
Editorial: Inlined Intl.PluralRules's GetOperands AO.
GetOperands
was only called from the ResolvePlural
AO, which immediately passed the Record returned by GetOperands
to the implementation-defined PluralRuleSelect AO. The revised version of ResolvePlural
directly passes PluralRuleSelect
the decimal String which was previously parsed by GetOperands
. Implementations of PluralRuleSelect
may (or may not) use something like GetOperands
to determine the correct plural category.
fixes https://github.com/tc39/ecma402/issues/635