123456789101112131415161718192021222324252627282930313233343536 |
- /*
- * 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());
- }
- }
|