mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-03 17:58:49 +00:00
25 lines
571 B
C++
25 lines
571 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
|
#include <LibJS/Runtime/NumberObject.h>
|
|
|
|
namespace JS {
|
|
|
|
JS_DEFINE_ALLOCATOR(NumberObject);
|
|
|
|
NonnullGCPtr<NumberObject> NumberObject::create(Realm& realm, double value)
|
|
{
|
|
return realm.heap().allocate<NumberObject>(realm, value, realm.intrinsics().number_prototype());
|
|
}
|
|
|
|
NumberObject::NumberObject(double value, Object& prototype)
|
|
: Object(ConstructWithPrototypeTag::Tag, prototype)
|
|
, m_value(value)
|
|
{
|
|
}
|
|
|
|
}
|