blob: 787adb98232c3b5f2e8e7c26a40fff40324d665f (
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\Execution\ExternVals;
use Nsfisis\Waddiwasi\WebAssembly\Execution\ExternVal;
final readonly class Table extends ExternVal
{
protected function __construct(
public int $addr,
) {
}
}
|