summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/WebAssembly/WebAssemblyTableObject.h
blob: bb2bbd2cd96103ce1dcb9d02ccf42794a4760733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibJS/Runtime/Object.h>
#include <LibWasm/AbstractMachine/AbstractMachine.h>
#include <LibWeb/Forward.h>
#include <LibWeb/WebAssembly/WebAssemblyInstanceObjectPrototype.h>
#include <LibWeb/WebAssembly/WebAssemblyObject.h>

namespace Web::Bindings {

class WebAssemblyTableObject final : public JS::Object {
    JS_OBJECT(WebAssemblyTableObject, Object);

public:
    explicit WebAssemblyTableObject(JS::GlobalObject&, Wasm::TableAddress);
    virtual ~WebAssemblyTableObject() override = default;

    Wasm::TableAddress address() const { return m_address; }

private:
    Wasm::TableAddress m_address;
};

}