/* * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Web::Bindings { PlatformObject::PlatformObject(JS::Object& prototype) : JS::Object(prototype) { } PlatformObject::~PlatformObject() = default; }