blob: b4323d79e3a0279cd8eb5dc3a0eb2c99c88f339d (
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\Refs;
use Nsfisis\Waddiwasi\Execution\Ref;
use Nsfisis\Waddiwasi\Structure\Types\RefType;
final readonly class RefNull extends Ref
{
public function __construct(
public RefType $type,
) {
}
}
|