aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Structure/Modules/Table.php
blob: f0125a2706a59eb8ec19c9284bbee990fec2a402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\WebAssembly\Structure\Modules;

use Nsfisis\Waddiwasi\WebAssembly\Structure\Types\TableType;

final readonly class Table
{
    public function __construct(
        public TableType $type,
    ) {
    }
}