/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace JS { NonnullGCPtr NumberObject::create(Realm& realm, double value) { return realm.heap().allocate(realm, value, *realm.intrinsics().number_prototype()).release_allocated_value_but_fixme_should_propagate_errors(); } NumberObject::NumberObject(double value, Object& prototype) : Object(ConstructWithPrototypeTag::Tag, prototype) , m_value(value) { } }