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
commit 0c2efa285a
Notes: sideshowbarker 2024-07-17 10:05:47 +09:00
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: