X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/f9bf01c6616d5ddcf65b13b33cedf9e387ff7a63..HEAD:/runtime/BooleanObject.cpp diff --git a/runtime/BooleanObject.cpp b/runtime/BooleanObject.cpp index c9b3846..28cad6a 100644 --- a/runtime/BooleanObject.cpp +++ b/runtime/BooleanObject.cpp @@ -21,15 +21,24 @@ #include "config.h" #include "BooleanObject.h" +#include "JSScope.h" +#include "JSCInlines.h" + namespace JSC { -ASSERT_CLASS_FITS_IN_CELL(BooleanObject); +STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(BooleanObject); + +const ClassInfo BooleanObject::s_info = { "Boolean", &JSWrapperObject::s_info, 0, CREATE_METHOD_TABLE(BooleanObject) }; -const ClassInfo BooleanObject::info = { "Boolean", 0, 0, 0 }; +BooleanObject::BooleanObject(VM& vm, Structure* structure) + : JSWrapperObject(vm, structure) +{ +} -BooleanObject::BooleanObject(NonNullPassRefPtr structure) - : JSWrapperObject(structure) +void BooleanObject::finishCreation(VM& vm) { + Base::finishCreation(vm); + ASSERT(inherits(info())); } } // namespace JSC