summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/NumberObject.cpp
blob: 2767ad60d0c39ef632453e162869269896ef8fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibJS/Runtime/GlobalObject.h>
#include <LibJS/Runtime/NumberObject.h>

namespace JS {

NumberObject* NumberObject::create(GlobalObject& global_object, double value)
{
    return global_object.heap().allocate<NumberObject>(global_object, value, *global_object.number_prototype());
}

NumberObject::NumberObject(double value, Object& prototype)
    : Object(prototype)
    , m_value(value)
{
}

NumberObject::~NumberObject()
{
}

}