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);
|
|
|
|
|
|
|
|
public:
|
2022-08-16 00:20:49 +01:00
|
|
|
static NumberFormatFunction* create(Realm&, NumberFormat&);
|
2021-11-10 12:34:14 -05:00
|
|
|
|
|
|
|
explicit NumberFormatFunction(NumberFormat&, Object& prototype);
|
|
|
|
virtual ~NumberFormatFunction() override = default;
|
2022-08-16 00:20:49 +01:00
|
|
|
virtual void initialize(Realm&) override;
|
2021-11-10 12:34:14 -05:00
|
|
|
|
|
|
|
virtual ThrowCompletionOr<Value> call() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
|
|
|
|
NumberFormat& m_number_format; // [[NumberFormat]]
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|