mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-10 01:59:43 +00:00
This uses ICU for the Intl.NumberFormat `format` and `formatToParts` prototypes. It does not yet port the range formatter prototypes. Most of the new code in LibLocale/NumberFormat is simply mapping from ECMA-402 types to ICU types. Beyond that, the only algorithmic change is that we have to mutate the output from ICU for `formatToParts` to match what is expected by ECMA-402. This is explained in NumberFormat.cpp in `flatten_partitions`. This lets us remove most data from our number format generator. All that remains are numbering system digits and symbols, which are relied upon still for other interfaces (e.g. Intl.DateTimeFormat). So they will be removed in a future patch. Note: All of the changes to the test files in this patch are now aligned with both Chrome and Safari.
73 lines
1.6 KiB
C++
73 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2022-2024, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Variant.h>
|
|
#include <LibCrypto/BigInt/SignedBigInteger.h>
|
|
#include <LibJS/Runtime/BigInt.h>
|
|
#include <LibJS/Runtime/Value.h>
|
|
#include <LibLocale/NumberFormat.h>
|
|
|
|
namespace JS::Intl {
|
|
|
|
// https://tc39.es/ecma402/#intl-mathematical-value
|
|
class MathematicalValue {
|
|
public:
|
|
enum class Symbol {
|
|
PositiveInfinity,
|
|
NegativeInfinity,
|
|
NegativeZero,
|
|
NotANumber,
|
|
};
|
|
|
|
MathematicalValue() = default;
|
|
|
|
explicit MathematicalValue(double value)
|
|
: m_value(value_from_number(value))
|
|
{
|
|
}
|
|
|
|
explicit MathematicalValue(Crypto::SignedBigInteger value)
|
|
: m_value(move(value))
|
|
{
|
|
}
|
|
|
|
explicit MathematicalValue(Symbol symbol)
|
|
: m_value(symbol)
|
|
{
|
|
}
|
|
|
|
MathematicalValue(Value value)
|
|
: m_value(value.is_number()
|
|
? value_from_number(value.as_double())
|
|
: ValueType(value.as_bigint().big_integer()))
|
|
{
|
|
}
|
|
|
|
bool is_number() const;
|
|
double as_number() const;
|
|
|
|
bool is_bigint() const;
|
|
Crypto::SignedBigInteger const& as_bigint() const;
|
|
|
|
bool is_mathematical_value() const;
|
|
bool is_positive_infinity() const;
|
|
bool is_negative_infinity() const;
|
|
bool is_negative_zero() const;
|
|
bool is_nan() const;
|
|
|
|
::Locale::NumberFormat::Value to_value() const;
|
|
|
|
private:
|
|
using ValueType = Variant<double, Crypto::SignedBigInteger, Symbol>;
|
|
|
|
static ValueType value_from_number(double number);
|
|
|
|
ValueType m_value { 0.0 };
|
|
};
|
|
|
|
}
|