blob: 8a4313706e3c7ab12077b1a0db9bfb8d00e9c84a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* 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)
{
}
}
|