1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

LibJS+LibLocale: Port Intl.NumberFormat to String

This commit is contained in:
Timothy Flynn 2023-01-22 11:55:26 -05:00 committed by Tim Flynn
parent 76fd5f2756
commit 0c2efa285a
13 changed files with 169 additions and 149 deletions

View file

@ -7,6 +7,7 @@
#pragma once
#include <AK/Checked.h>
#include <AK/String.h>
#include <AK/Variant.h>
#include <LibCrypto/BigInt/SignedBigInteger.h>
#include <LibJS/Runtime/Value.h>
@ -87,7 +88,7 @@ public:
bool is_positive() const;
bool is_zero() const;
DeprecatedString to_deprecated_string() const;
ThrowCompletionOr<String> to_string(VM&) const;
Value to_value(VM&) const;
private: