blob: ae38c7824d974e527e22ef9ae073ec73ec250946 (
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\GlobalAddr;
final readonly class Global_ extends ExternVal
{
protected function __construct(
public GlobalAddr $addr,
) {
}
}
|