/* * Copyright (c) 2021, Ali Mohammad Pur * * SPDX-License-Identifier: BSD-2-Clause */ #include "WebAssemblyTablePrototype.h" #include namespace Web::Bindings { WebAssemblyTableObject::WebAssemblyTableObject(JS::GlobalObject& global_object, Wasm::TableAddress address) : Object(static_cast(global_object).ensure_web_prototype("WebAssemblyTablePrototype")) , m_address(address) { } }