30 lines
517 B
C++
30 lines
517 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Runtime/Object.h>
|
|
|
|
namespace JS {
|
|
|
|
class NumberObject : public Object {
|
|
JS_OBJECT(NumberObject, Object);
|
|
|
|
public:
|
|
static NonnullGCPtr<NumberObject> create(Realm&, double);
|
|
|
|
virtual ~NumberObject() override = default;
|
|
|
|
double number() const { return m_value; }
|
|
|
|
protected:
|
|
NumberObject(double, Object& prototype);
|
|
|
|
private:
|
|
double m_value { 0 };
|
|
};
|
|
|
|
}
|