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

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution\ExternVals;

use Nsfisis\Waddiwasi\Execution\ExternVal;

final readonly class Table extends ExternVal
{
    protected function __construct(
        public int $addr,
    ) {
    }
}