/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace JS { class NumberPrototype final : public NumberObject { JS_OBJECT(NumberPrototype, NumberObject); GC_DECLARE_ALLOCATOR(NumberPrototype); public: virtual void initialize(Realm&) override; virtual ~NumberPrototype() override = default; JS_DECLARE_NATIVE_FUNCTION(to_exponential); JS_DECLARE_NATIVE_FUNCTION(to_fixed); JS_DECLARE_NATIVE_FUNCTION(to_locale_string); JS_DECLARE_NATIVE_FUNCTION(to_precision); JS_DECLARE_NATIVE_FUNCTION(to_string); JS_DECLARE_NATIVE_FUNCTION(value_of); private: explicit NumberPrototype(Realm&); }; }