/* * Copyright (c) 2024, stelar7 * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Web::IndexedDB { GC_DEFINE_ALLOCATOR(IDBKeyRange); IDBKeyRange::~IDBKeyRange() = default; IDBKeyRange::IDBKeyRange(JS::Realm& realm) : PlatformObject(realm) { } GC::Ref IDBKeyRange::create(JS::Realm& realm) { return realm.create(realm); } void IDBKeyRange::initialize(JS::Realm& realm) { Base::initialize(realm); WEB_SET_PROTOTYPE_FOR_INTERFACE(IDBKeyRange); } }