2021-11-10 12:34:14 -05:00
|
|
|
/*
|
2022-01-31 13:07:22 -05:00
|
|
|
* Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
|
2021-11-10 12:34:14 -05:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibJS/Forward.h>
|
|
|
|
#include <LibJS/Runtime/Completion.h>
|
|
|
|
#include <LibJS/Runtime/NativeFunction.h>
|
|
|
|
|
|
|
|
namespace JS::Intl {
|
|
|
|
|
|
|
|
class NumberFormatFunction final : public NativeFunction {
|
|
|
|
JS_OBJECT(NumberFormatFunction, NativeFunction);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(NumberFormatFunction);
|
2021-11-10 12:34:14 -05:00
|
|
|
|
|
|
|
public:
|
2024-11-15 04:01:23 +13:00
|
|
|
static GC::Ref<NumberFormatFunction> create(Realm&, NumberFormat&);
|
2021-11-10 12:34:14 -05:00
|
|
|
|
|
|
|
virtual ~NumberFormatFunction() override = default;
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(Realm&) override;
|
2021-11-10 12:34:14 -05:00
|
|
|
|
|
|
|
virtual ThrowCompletionOr<Value> call() override;
|
|
|
|
|
|
|
|
private:
|
2022-08-28 23:51:28 +02:00
|
|
|
explicit NumberFormatFunction(NumberFormat&, Object& prototype);
|
|
|
|
|
2021-11-10 12:34:14 -05:00
|
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<NumberFormat> m_number_format; // [[NumberFormat]]
|
2021-11-10 12:34:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|