
This is a continuation of the previous three commits. Now that create() receives the allocating realm, we can simply forward that to allocate(), which accounts for the majority of these changes. Additionally, we can get rid of the realm_from_global_object() in one place, with one more remaining in VM::throw_completion().
23 lines
504 B
C++
23 lines
504 B
C++
/*
|
|
* Copyright (c) 2020, Jack Karamanian <karamanian.jack@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Runtime/BooleanObject.h>
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
|
|
|
namespace JS {
|
|
|
|
BooleanObject* BooleanObject::create(Realm& realm, bool value)
|
|
{
|
|
return realm.heap().allocate<BooleanObject>(realm, value, *realm.global_object().boolean_prototype());
|
|
}
|
|
|
|
BooleanObject::BooleanObject(bool value, Object& prototype)
|
|
: Object(prototype)
|
|
, m_value(value)
|
|
{
|
|
}
|
|
|
|
}
|