/* * Copyright (c) 2021, Ali Mohammad Pur * Copyright (c) 2023, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include namespace Web::WebAssembly { class Module : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(Module, Bindings::PlatformObject); public: static WebIDL::ExceptionOr> construct_impl(JS::Realm&, JS::Handle& bytes); size_t index() const { return m_index; } Wasm::Module const& module() const; private: Module(JS::Realm&, size_t index); virtual JS::ThrowCompletionOr initialize(JS::Realm&) override; size_t m_index { 0 }; }; }