mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 16:16:43 +00:00
LibJS: Implement a nearly empty Intl.NumberFormat object
This adds plumbing for the Intl.NumberFormat object, constructor, and prototype.
This commit is contained in:
parent
a1954262f8
commit
07f12b108b
Notes:
sideshowbarker
2024-07-18 04:18:06 +09:00
Author: https://github.com/trflynn89
Commit: 07f12b108b
Pull-request: https://github.com/SerenityOS/serenity/pull/9945
Reviewed-by: https://github.com/linusg ✅
12 changed files with 550 additions and 1 deletions
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibJS/Runtime/NativeFunction.h>
|
||||
|
||||
namespace JS::Intl {
|
||||
|
||||
class NumberFormatConstructor final : public NativeFunction {
|
||||
JS_OBJECT(NumberFormatConstructor, NativeFunction);
|
||||
|
||||
public:
|
||||
explicit NumberFormatConstructor(GlobalObject&);
|
||||
virtual void initialize(GlobalObject&) override;
|
||||
virtual ~NumberFormatConstructor() override = default;
|
||||
|
||||
virtual Value call() override;
|
||||
virtual Value construct(FunctionObject& new_target) override;
|
||||
|
||||
private:
|
||||
virtual bool has_constructor() const override { return true; }
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue