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