mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 19:57:45 +03:00
4abdb68655
This constructor was easily confused with a copy constructor, and it was possible to accidentally copy-construct Objects in at least one way that we dicovered (via generic ThrowCompletionOr construction). This patch adds a mandatory ConstructWithPrototypeTag parameter to the constructor to disambiguate it.
37 lines
723 B
C++
37 lines
723 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/TypeCasts.h>
|
|
#include <LibJS/Runtime/Realm.h>
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
#include <LibWeb/HTML/Window.h>
|
|
|
|
namespace Web::Bindings {
|
|
|
|
PlatformObject::PlatformObject(JS::Realm& realm)
|
|
: JS::Object(realm, nullptr)
|
|
{
|
|
}
|
|
|
|
PlatformObject::PlatformObject(JS::Object& prototype)
|
|
: JS::Object(ConstructWithPrototypeTag::Tag, prototype)
|
|
{
|
|
}
|
|
|
|
PlatformObject::~PlatformObject() = default;
|
|
|
|
JS::Realm& PlatformObject::realm() const
|
|
{
|
|
return shape().realm();
|
|
}
|
|
|
|
HTML::Window& PlatformObject::global_object() const
|
|
{
|
|
return verify_cast<HTML::Window>(realm().global_object());
|
|
}
|
|
|
|
}
|