blob: 65a833fa9ddc5267cc9e721c19ce21a92f82d465 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\WebAssembly\Execution\Externs;
use Nsfisis\Waddiwasi\WebAssembly\Execution\Extern;
use Nsfisis\Waddiwasi\WebAssembly\Execution\TableInst;
final readonly class Table extends Extern
{
protected function __construct(
public TableInst $table,
) {
}
}
|