aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/TableInst.php
blob: 5a6766d86a25340dac6606859c9aebdcf8a8e8fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution;

use Nsfisis\Waddiwasi\Structure\Types\TableType;

final readonly class TableInst
{
    /**
     * @param list<Ref> $elem
     */
    public function __construct(
        public TableType $type,
        public array $elem,
    ) {
    }
}